Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
BN_GenerativeModel
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Antonio Andriella
BN_GenerativeModel
Commits
2b163ac7
Commit
2b163ac7
authored
4 years ago
by
Antonio Andriella
Browse files
Options
Downloads
Patches
Plain Diff
change bn models
parent
87cc1763
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bn_persona_model/persona_model_test.bif
+7
-26
7 additions, 26 deletions
bn_persona_model/persona_model_test.bif
with
7 additions
and
26 deletions
bn_persona_model/persona_model_test.bif
+
7
−
26
View file @
2b163ac7
...
...
@@ -16,9 +16,6 @@ variable game_state {
variable user_action {
type discrete [ 3 ] { correct, wrong, timeout };
}
variable agent_feedback {
type discrete [ 2 ] { no, yes };
}
%INDIVIDUAL PROBABILITIES DEFINITION
...
...
@@ -34,12 +31,6 @@ probability ( attempt ) {
probability ( user_action ) {
table 0.33, 0.33, 0.34;
}
probability ( agent_feedback ) {
table 0.5, 0.5;
}
probability (game_state | user_action) {
(correct) 0.30, 0.30, 0.4;
(wrong) 0.35, 0.35, 0.3;
...
...
@@ -50,21 +41,11 @@ probability (attempt | user_action) {
(wrong) 0.4, 0.3, 0.2, 0.1;
(timeout) 0.4, 0.3, 0.2, 0.1;
}
probability (user_action | agent_assistance, agent_feedback) {
(lev_0, no) 0.05 0.85 0.1;
(lev_1, no) 0.1 0.8 0.1;
(lev_2, no) 0.2 0.7 0.1;
(lev_3, no) 0.33 0.57 0.1;
(lev_4, no) 0.9 0.1 0.0;
(lev_5, no) 1.0 0.0 0.0;
(lev_0, yes) 0.5 0.4 0.1;
(lev_1, yes) 0.6 0.3 0.1;
(lev_2, yes) 0.7 0.2 0.1;
(lev_3, yes) 0.8 0.1 0.1;
(lev_4, yes) 0.9 0.1 0.0;
(lev_5, yes) 1.0 0.0 0.0;
probability (user_action | agent_assistance) {
(lev_0) 0.05 0.85 0.1;
(lev_1) 0.1 0.8 0.1;
(lev_2) 0.2 0.7 0.1;
(lev_3) 0.33 0.57 0.1;
(lev_4) 0.9 0.1 0.0;
(lev_5) 1.0 0.0 0.0;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment