diff --git a/BN_Models/13/False/agent_model.bif b/BN_Models/13/False/agent_model.bif
deleted file mode 100644
index 2086e0ab3b1fa2b0bd6cc2aba3d851a29d2230f9..0000000000000000000000000000000000000000
--- a/BN_Models/13/False/agent_model.bif
+++ /dev/null
@@ -1,40 +0,0 @@
-network agent_assistive_model {
-}
-
-%VARIABLES DEFINITION
-
-variable agent_assistance {
-  type discrete [ 6 ] { lev_0, lev_1, lev_2, lev_3, lev_4, lev_5};
-}
-variable attempt {
-  type discrete [ 4 ] { att_1, att_2, att_3, att_4 };
-}
-variable game_state {
-  type discrete [ 3 ] { beg, mid, end };
-}
-
-
-%INDIVIDUAL PROBABILITIES DEFINITION
-probability ( agent_assistance ) {
-  table 0.17, 0.17, 0.17, 0.17, 0.16, 0.16;
-}
-probability ( game_state ) {
-  table 0.34, 0.33, 0.33;
-}
-probability ( attempt ) {
-  table 0.25, 0.25, 0.25, 0.25;
-}
-probability (agent_assistance | game_state, attempt) { 
-(beg, att_1)	0.29411764705882354, 0.29411764705882354, 0.17647058823529413, 0.11764705882352941, 0.058823529411764705, 0.058823529411764705; 
-(beg, att_2)	0.2777777777777778, 0.2777777777777778, 0.2222222222222222, 0.1111111111111111, 0.05555555555555555, 0.05555555555555555; 
-(beg, att_3)	0.2777777777777778, 0.2777777777777778, 0.2222222222222222, 0.1111111111111111, 0.05555555555555555, 0.05555555555555555; 
-(beg, att_4)	0.2777777777777778, 0.2777777777777778, 0.2222222222222222, 0.1111111111111111, 0.05555555555555555, 0.05555555555555555; 
-(mid, att_1)	0.29411764705882354, 0.29411764705882354, 0.17647058823529413, 0.11764705882352941, 0.058823529411764705, 0.058823529411764705; 
-(mid, att_2)	0.2777777777777778, 0.2777777777777778, 0.2222222222222222, 0.1111111111111111, 0.05555555555555555, 0.05555555555555555; 
-(mid, att_3)	0.2777777777777778, 0.2777777777777778, 0.2222222222222222, 0.1111111111111111, 0.05555555555555555, 0.05555555555555555; 
-(mid, att_4)	0.2777777777777778, 0.2777777777777778, 0.2222222222222222, 0.1111111111111111, 0.05555555555555555, 0.05555555555555555; 
-(end, att_1)	0.29411764705882354, 0.29411764705882354, 0.17647058823529413, 0.11764705882352941, 0.058823529411764705, 0.058823529411764705; 
-(end, att_2)	0.2777777777777778, 0.2777777777777778, 0.2222222222222222, 0.1111111111111111, 0.05555555555555555, 0.05555555555555555; 
-(end, att_3)	0.2777777777777778, 0.2777777777777778, 0.2222222222222222, 0.1111111111111111, 0.05555555555555555, 0.05555555555555555; 
-(end, att_4)	0.2777777777777778, 0.2777777777777778, 0.2222222222222222, 0.1111111111111111, 0.05555555555555555, 0.05555555555555555; 
-}
\ No newline at end of file
diff --git a/BN_Models/13/False/user_model.bif b/BN_Models/13/False/user_model.bif
deleted file mode 100644
index 25c893c6184147ee7de593a13d8ffb7ccd0aec9c..0000000000000000000000000000000000000000
--- a/BN_Models/13/False/user_model.bif
+++ /dev/null
@@ -1,51 +0,0 @@
-network persona_model {
-}
-
-%VARIABLES DEFINITION
-
-variable agent_assistance {
-  type discrete [ 6 ] { lev_0, lev_1, lev_2, lev_3, lev_4, lev_5 };
-}
-variable attempt {
-  type discrete [ 4 ] { att_1, att_2, att_3, att_4 };
-}
-variable game_state {
-  type discrete [ 3 ] { beg, mid, end };
-}
-
-variable user_action {
-  type discrete [ 3 ] { correct, wrong, timeout };
-}
-
-%INDIVIDUAL PROBABILITIES DEFINITION
-
-probability ( agent_assistance ) {
-  table 0.17, 0.16, 0.16, 0.17, 0.17, 0.17;
-}
-probability ( game_state) {
-  table 0.34, 0.33, 0.33;
-}
-probability ( attempt ) {
-  table 0.25, 0.25, 0.25, 0.25;
-}
-probability ( user_action ) {
-  table 0.33, 0.33, 0.34;
-}
-probability (game_state | user_action)  { 
-(correct)	0.3,0.3,0.4;
-(wrong)	0.8,0.1,0.1;
-(timeout)	0.5,0.25, 0.25;
-}
-probability (attempt | user_action)  { 
-(correct)	0.21052631578947367,0.2631578947368421,0.2631578947368421,0.2631578947368421; 
-(wrong)	1.0,0.0,0.0,0.0; 
-(timeout)	1.0,0.0,0.0,0.0; 
-}
-probability (user_action | agent_assistance) { 
-(lev_0)	0.8,0.1,0.1; 
-(lev_1)	1.0,0.0,0.0; 
-(lev_2)	1.0,0.0,0.0; 
-(lev_3)	1.0,0.0,0.0; 
-(lev_4)	1.0,0.0,0.0; 
-(lev_5)	1.0,0.0,0.0; 
-}
\ No newline at end of file
diff --git a/BN_Models/13/True/agent_model.bif b/BN_Models/13/True/agent_model.bif
deleted file mode 100644
index 2086e0ab3b1fa2b0bd6cc2aba3d851a29d2230f9..0000000000000000000000000000000000000000
--- a/BN_Models/13/True/agent_model.bif
+++ /dev/null
@@ -1,40 +0,0 @@
-network agent_assistive_model {
-}
-
-%VARIABLES DEFINITION
-
-variable agent_assistance {
-  type discrete [ 6 ] { lev_0, lev_1, lev_2, lev_3, lev_4, lev_5};
-}
-variable attempt {
-  type discrete [ 4 ] { att_1, att_2, att_3, att_4 };
-}
-variable game_state {
-  type discrete [ 3 ] { beg, mid, end };
-}
-
-
-%INDIVIDUAL PROBABILITIES DEFINITION
-probability ( agent_assistance ) {
-  table 0.17, 0.17, 0.17, 0.17, 0.16, 0.16;
-}
-probability ( game_state ) {
-  table 0.34, 0.33, 0.33;
-}
-probability ( attempt ) {
-  table 0.25, 0.25, 0.25, 0.25;
-}
-probability (agent_assistance | game_state, attempt) { 
-(beg, att_1)	0.29411764705882354, 0.29411764705882354, 0.17647058823529413, 0.11764705882352941, 0.058823529411764705, 0.058823529411764705; 
-(beg, att_2)	0.2777777777777778, 0.2777777777777778, 0.2222222222222222, 0.1111111111111111, 0.05555555555555555, 0.05555555555555555; 
-(beg, att_3)	0.2777777777777778, 0.2777777777777778, 0.2222222222222222, 0.1111111111111111, 0.05555555555555555, 0.05555555555555555; 
-(beg, att_4)	0.2777777777777778, 0.2777777777777778, 0.2222222222222222, 0.1111111111111111, 0.05555555555555555, 0.05555555555555555; 
-(mid, att_1)	0.29411764705882354, 0.29411764705882354, 0.17647058823529413, 0.11764705882352941, 0.058823529411764705, 0.058823529411764705; 
-(mid, att_2)	0.2777777777777778, 0.2777777777777778, 0.2222222222222222, 0.1111111111111111, 0.05555555555555555, 0.05555555555555555; 
-(mid, att_3)	0.2777777777777778, 0.2777777777777778, 0.2222222222222222, 0.1111111111111111, 0.05555555555555555, 0.05555555555555555; 
-(mid, att_4)	0.2777777777777778, 0.2777777777777778, 0.2222222222222222, 0.1111111111111111, 0.05555555555555555, 0.05555555555555555; 
-(end, att_1)	0.29411764705882354, 0.29411764705882354, 0.17647058823529413, 0.11764705882352941, 0.058823529411764705, 0.058823529411764705; 
-(end, att_2)	0.2777777777777778, 0.2777777777777778, 0.2222222222222222, 0.1111111111111111, 0.05555555555555555, 0.05555555555555555; 
-(end, att_3)	0.2777777777777778, 0.2777777777777778, 0.2222222222222222, 0.1111111111111111, 0.05555555555555555, 0.05555555555555555; 
-(end, att_4)	0.2777777777777778, 0.2777777777777778, 0.2222222222222222, 0.1111111111111111, 0.05555555555555555, 0.05555555555555555; 
-}
\ No newline at end of file
diff --git a/BN_Models/13/True/user_model.bif b/BN_Models/13/True/user_model.bif
deleted file mode 100644
index 25c893c6184147ee7de593a13d8ffb7ccd0aec9c..0000000000000000000000000000000000000000
--- a/BN_Models/13/True/user_model.bif
+++ /dev/null
@@ -1,51 +0,0 @@
-network persona_model {
-}
-
-%VARIABLES DEFINITION
-
-variable agent_assistance {
-  type discrete [ 6 ] { lev_0, lev_1, lev_2, lev_3, lev_4, lev_5 };
-}
-variable attempt {
-  type discrete [ 4 ] { att_1, att_2, att_3, att_4 };
-}
-variable game_state {
-  type discrete [ 3 ] { beg, mid, end };
-}
-
-variable user_action {
-  type discrete [ 3 ] { correct, wrong, timeout };
-}
-
-%INDIVIDUAL PROBABILITIES DEFINITION
-
-probability ( agent_assistance ) {
-  table 0.17, 0.16, 0.16, 0.17, 0.17, 0.17;
-}
-probability ( game_state) {
-  table 0.34, 0.33, 0.33;
-}
-probability ( attempt ) {
-  table 0.25, 0.25, 0.25, 0.25;
-}
-probability ( user_action ) {
-  table 0.33, 0.33, 0.34;
-}
-probability (game_state | user_action)  { 
-(correct)	0.3,0.3,0.4;
-(wrong)	0.8,0.1,0.1;
-(timeout)	0.5,0.25, 0.25;
-}
-probability (attempt | user_action)  { 
-(correct)	0.21052631578947367,0.2631578947368421,0.2631578947368421,0.2631578947368421; 
-(wrong)	1.0,0.0,0.0,0.0; 
-(timeout)	1.0,0.0,0.0,0.0; 
-}
-probability (user_action | agent_assistance) { 
-(lev_0)	0.8,0.1,0.1; 
-(lev_1)	1.0,0.0,0.0; 
-(lev_2)	1.0,0.0,0.0; 
-(lev_3)	1.0,0.0,0.0; 
-(lev_4)	1.0,0.0,0.0; 
-(lev_5)	1.0,0.0,0.0; 
-}
\ No newline at end of file
diff --git a/main.py b/main.py
index be3a683a24c6a03b522f52ee26ed08889eccb291..a88676196bff70e2f314f633569737f3226c0d05 100644
--- a/main.py
+++ b/main.py
@@ -375,6 +375,7 @@ def main():
                        agent_assistance_bn_name="agent_assistance",
                        agent_policy = [],
                        agent_objective=agent_objective,
+                       epsilon=0.3,
                        state_space=states_space_list,
                        epoch=epochs,
                        run=runs,
@@ -385,6 +386,8 @@ def main():
     plot_agent_assistance_path = output_folder_data_path+"/agent_assistance_" + "epoch_" + str(epochs) + ".jpg"
 
     utils.plot2D_game_performance(plot_game_performance_path, epochs, scaling_factor, game_performance_per_episode)
+    #add only to have a larger plot
+    agent_assistance_per_episode.append([0,0,0,0,0,0,0])
     utils.plot2D_assistance(plot_agent_assistance_path, epochs, scaling_factor, agent_assistance_per_episode)
 
     sim_patient_performance_filename = "sim_patient_performance.pkl"
diff --git a/plot_results.py b/plot_results.py
new file mode 100644
index 0000000000000000000000000000000000000000..bd5a30624c3b6db113be5079e53d9814e38761d8
--- /dev/null
+++ b/plot_results.py
@@ -0,0 +1,197 @@
+import matplotlib.pyplot as plt
+import seaborn as sns
+import pandas as pd
+import numpy as np
+from statannot import add_stat_annotation
+#from pandas.compat import StringIO
+import pandas as pd
+import csv
+import os
+
+def compute_assistance(directory_name, output_filename):
+
+    def compute_average_assistance(file_name):
+        print("FILENAME:", file_name)
+        data = pd.read_csv(file_name)
+        attempt = (data['attempt'])
+        if attempt.empty == True:
+            return 0
+        sum=0
+        print("attempt vector ", attempt)
+        for i in range(len(attempt)):
+           print("id:", i, "val:", attempt[i])
+           sum += attempt[i]
+        return sum/len(attempt)
+
+    #create a file for outputting our data
+    with open(output_filename, 'a+') as f:
+        f.write(output_filename)
+        f.write("\n")
+        f.close()
+    #get into directory e.g. terapist-patient-interaction
+    directory = directory_name
+    files_in_directory = os.listdir(directory_name)
+    #for each user id
+    for dir_name in files_in_directory:
+        files_in_directory = os.listdir(directory_name+"/"+dir_name)
+        for dir_dir_name in files_in_directory:
+            files_files_in_directory = os.listdir(directory_name+"/"+dir_name+"/"+dir_dir_name)
+            if "1" in files_files_in_directory or \
+             "2" in files_files_in_directory  or \
+             "3" in files_files_in_directory:
+                for dir_dir_dir_name in files_files_in_directory:
+                    files_files_files_in_directory = os.listdir(directory_name+"/"+dir_name+"/"+dir_dir_name+"/"+dir_dir_dir_name)
+
+                    for dir_dir_dir_dir_name in files_files_files_in_directory:
+                        if dir_dir_dir_dir_name == "log_spec.csv":
+                            print(dir_dir_dir_dir_name)
+                            # process
+                            attempt = compute_average_assistance(directory_name+"/"+dir_name+"/"+dir_dir_name+"/"+dir_dir_dir_name+"/"+dir_dir_dir_dir_name)
+                            print(directory_name+"/"+dir_name+"/"+dir_dir_name+"/"+dir_dir_dir_name+"/"+dir_dir_dir_dir_name)
+                            with open(output_filename, 'a+') as f:
+                                f.write(str(attempt))
+                                f.write("\n")
+                                f.close()
+
+def compute_lev_assistance(directory_name, output_filename):
+
+    def compute_assistance_vector(file_name):
+        print("FILENAME:", file_name)
+        data = pd.read_csv(file_name)
+        assistance_levs = (data['agent_assistance'])
+        if assistance_levs.empty == True:
+            return 0
+        counter_levels=[0,0,0,0,0]
+        print("agent_assistance vector ", assistance_levs)
+        for i in range(len(assistance_levs)):
+            print("id:", i, "val:", assistance_levs[i])
+            if assistance_levs[i] == 0:
+               counter_levels[0] += 1
+            elif assistance_levs[i] == 1:
+               counter_levels[1] += 1
+            elif assistance_levs[i] == 2:
+                counter_levels[2] += 1
+            elif assistance_levs[i] == 3:
+                counter_levels[3] += 1
+            else:
+                counter_levels[4] += 1
+
+        return counter_levels
+
+    #create a file for outputting our data
+    with open(output_filename, 'a+') as f:
+        f.write(output_filename)
+        f.write("\n")
+        f.close()
+    #get into directory e.g. terapist-patient-interaction
+    directory = directory_name
+    files_in_directory = os.listdir(directory_name)
+    #for each user id
+    for dir_name in files_in_directory:
+        files_in_directory = os.listdir(directory_name+"/"+dir_name)
+        for dir_dir_name in files_in_directory:
+            files_files_in_directory = os.listdir(directory_name+"/"+dir_name+"/"+dir_dir_name)
+            if "1" in files_files_in_directory or \
+             "2" in files_files_in_directory  or \
+             "3" in files_files_in_directory:
+                for dir_dir_dir_name in files_files_in_directory:
+                    files_files_files_in_directory = os.listdir(directory_name+"/"+dir_name+"/"+dir_dir_name+"/"+dir_dir_dir_name)
+
+                    for dir_dir_dir_dir_name in files_files_files_in_directory:
+                        if dir_dir_dir_dir_name == "bn_variables.csv":
+                            print(dir_dir_dir_dir_name)
+                            # process
+                            ass_level = compute_assistance_vector(directory_name+"/"+dir_name+"/"+dir_dir_name+"/"+dir_dir_dir_name+"/"+dir_dir_dir_dir_name)
+                            print(directory_name+"/"+dir_name+"/"+dir_dir_name+"/"+dir_dir_dir_name+"/"+dir_dir_dir_dir_name)
+                            with open(output_filename, 'a+') as f:
+                                f.write(str(ass_level[0])+","+str(ass_level[1])+","+str(ass_level[2])+","+
+                                            str(ass_level[3])+","+str(ass_level[4]))
+                                f.write("\n")
+                                f.close()
+
+
+def compute_boxplot(x_val, y_val, order, box_pairs, p_values, input_filename, output_filename):
+
+    df = pd.read_csv(input_filename)
+    x = x_val
+    y = y_val
+    order = order
+    ax = sns.boxplot(data=df, x=x, y=y, order=order)
+    add_stat_annotation(ax, data=df, x=x, y=y, order=order,
+                        box_pairs=box_pairs,
+                        perform_stat_test=False, pvalues=p_values,
+                        test=None, text_format='star', loc='inside', verbose=2);
+    plt.xlabel("Therapist")
+    plt.ylabel("STD_DEV")
+    plt.savefig(output_filename, dpi=600, bbox_inches='tight')
+
+    plt.show()
+#plot therapist evaluation
+# x = "session"
+# y = "eval"
+# order = ['S1', 'S2', 'S3', 'S4', 'S5', 'S6']
+# box_pairs = [('S1','S2'), ('S2', 'S3'),('S3','S4'),('S4', 'S5'),('S5','S6')]
+# p_values = [0.001, 0.01, 0.001, 0.001, 0.07]
+#
+# input_filename = "../therapist_evaluation.csv"
+# output_filename = "Pictures/therapist_evaluation.png"
+# compute_boxplot(x_val=x, y_val=y, order=order, box_pairs=box_pairs, p_values=p_values, input_filename=input_filename, output_filename=output_filename)
+
+#plot NASA TLX therapist vs robot
+
+# x = "Task Workload"
+# y = "Value"
+# hue = "assistant"
+# hue_order=['Human Therapist', 'Robot Therapist', '']
+# box_pairs=[
+#     (("mental", "Human Therapist"), ("mental", "Robot Therapist")),
+#     (("physical", 'Human Therapist'), ("physical", "Robot Therapist")),
+#     (("temporal", 'Human Therapist'), ("temporal", "Robot Therapist")),
+#     (("performance", 'Human Therapist'), ("performance", "Robot Therapist")),
+#     (("effort", 'Human Therapist'), ("effort", "Robot Therapist")),
+#     (("frustration", 'Human Therapist'), ("frustration", "Robot Therapist")),
+#     (("total", 'Human Therapist'), ("total", "Robot Therapist")),
+#     ]
+# input_filename = "statistical_analysis/nasa_r_vs_t.csv"
+# df = pd.read_csv(input_filename)
+# ax = sns.boxplot(data=df, x=x, y=y, hue=hue,)
+# add_stat_annotation(ax, data=df, x=x, y=y, hue=hue, box_pairs=box_pairs,
+#                     perform_stat_test=False, pvalues=[0.004, 0.62, 0.5, 0.41, 0.005, 0.32, 0.03],
+#                     test=None, loc='inside', verbose=2)
+# plt.xticks(rotation=45)
+# plt.legend(loc='upper left', bbox_to_anchor=(1.03, 1))
+# plt.savefig('Pictures/nasa_r_vs_t.png', dpi=600, bbox_inches='tight')
+
+# x = "assistant"
+# y = "performance"
+# order = ['Human', 'GOAL Simulator', 'Robot']
+# box_pairs = [('Human','Robot'), ('GOAL Simulator', 'Robot')]
+# p_values = [0.02, 0.1]
+#
+# input_filename = "statistical_analysis/tpi_vs_rpi_sim.csv"
+# output_filename = "Pictures/tpi_rpi_sim_performance.png"
+# compute_boxplot(x_val=x, y_val=y, order=order, box_pairs=box_pairs, p_values=p_values, input_filename=input_filename, output_filename=output_filename)
+
+x = "assistant"
+y = "std_dev"
+order = ['Human', 'Robot']
+box_pairs = [('Human','Robot')]
+p_values = [0.001]
+
+input_filename = "statistical_analysis/rpi_tpi_std_dev.csv"
+output_filename = "Pictures/tpi_rpi_std_dev.png"
+compute_boxplot(x_val=x, y_val=y, order=order, box_pairs=box_pairs, p_values=p_values, input_filename=input_filename, output_filename=output_filename)
+#
+# sum_attempt = compute_lev_assistance("/home/pal/carf_ws/src/carf/robot-patient-interaction",
+#                                  #"/home/pal/Documents/Framework/GenerativeMutualShapingRL/therapist-patient-interaction",
+#                                  "/home/pal/Documents/Framework/GenerativeMutualShapingRL/statistical_analysis/assistance_levels_robot.txt")
+# print("attempt:",sum_attempt)
+
+#sns.set_theme(style="whitegrid")
+
+# input_filename = "statistical_analysis/average_assistance.csv"
+# df = pd.read_csv(input_filename)
+# ax = sns.barplot(y="level", x="percentage", hue="Therapist", data=df, orient='h')
+# plt.xlabel("Percentage")
+# plt.ylabel("Assistance Level")
+# plt.savefig('Pictures/avg_assistance.png', dpi=600, bbox_inches='tight')
diff --git a/questionnaire_gui.py b/questionnaire_gui.py
index f075aa4fae7705acdfcc861f7dff49fdf9b64377..d612dbad0d0fb36243c22354b97b618272f7810d 100644
--- a/questionnaire_gui.py
+++ b/questionnaire_gui.py
@@ -57,46 +57,50 @@ class GUI():
         self.selected_value_ass_5_att_4 = IntVar()
 
         self.notebook.add(self.frame5, text="User Info")
-        self.notebook.add(self.frame1, text="Attempt|User_Action")
-        self.notebook.add(self.frame2, text="Game_State|User_Action")
-        self.notebook.add(self.frame3, text="User_Action|Robot_Assistance")
-        self.notebook.add(self.frame4, text="Robot_Assistance|User_Action")
+        self.notebook.add(self.frame1, text="Attempt|Patient_Action")
+        self.notebook.add(self.frame2, text="Exercise|Patient_Action")
+        self.notebook.add(self.frame3, text="Patient_Action|Therapist_Assistive_Behaviour")
+        self.notebook.add(self.frame4, text="Therapist_Assistive_Behaviour|Patient_Action")
 
-        Label(self.frame5,text="User ID").grid(row=2,column=0)
+        Label(self.frame5,text="Patient ID").grid(row=2,column=0)
         Entry(self.frame5, textvariable=self.id).grid(row=2, column=1)
-        Label(self.frame5,text="User Model Name").grid(row=3,column=0)
+        Label(self.frame5,text="Patient Model Name").grid(row=3,column=0)
         Entry(self.frame5, textvariable=self.user_model).grid(row=3, column=1)
-        Label(self.frame5, text="Agent Model Name").grid(row=4, column=0)
+        Label(self.frame5, text="Therapist Model Name").grid(row=4, column=0)
         Entry(self.frame5, textvariable=self.agent_model).grid(row=4, column=1)
         Button(self.frame5, text="Save", command=self.save).grid(row=8, column=0)
 
         Label(self.frame1, text="What is the chance the patient will move the correct token at his first attempt?").grid(row=2, column=0)
-        Radiobutton(self.frame1, text="1", variable=self.selected_value_att_1, value=1).grid(row=2, column=2)
-        Radiobutton(self.frame1, text="2", variable=self.selected_value_att_1, value=2).grid(row=2, column=3)
-        Radiobutton(self.frame1, text="3", variable=self.selected_value_att_1, value=3).grid(row=2, column=4)
-        Radiobutton(self.frame1, text="4", variable=self.selected_value_att_1, value=4).grid(row=2, column=5)
-        Radiobutton(self.frame1, text="5", variable=self.selected_value_att_1, value=5).grid(row=2, column=6)
+        Radiobutton(self.frame1, text="0", variable=self.selected_value_att_1, value=0).grid(row=2, column=2)
+        Radiobutton(self.frame1, text="1", variable=self.selected_value_att_1, value=1).grid(row=2, column=3)
+        Radiobutton(self.frame1, text="2", variable=self.selected_value_att_1, value=2).grid(row=2, column=4)
+        Radiobutton(self.frame1, text="3", variable=self.selected_value_att_1, value=3).grid(row=2, column=5)
+        Radiobutton(self.frame1, text="4", variable=self.selected_value_att_1, value=4).grid(row=2, column=6)
+        Radiobutton(self.frame1, text="5", variable=self.selected_value_att_1, value=5).grid(row=2, column=7)
 
         Label(self.frame1, text="What is the chance the patient will move the correct token at his second attempt?").grid(row=4, column=0)
-        Radiobutton(self.frame1, text="1", variable=self.selected_value_att_2, value=1).grid(row=4, column=2)
-        Radiobutton(self.frame1, text="2", variable=self.selected_value_att_2, value=2).grid(row=4, column=3)
-        Radiobutton(self.frame1, text="3", variable=self.selected_value_att_2, value=3).grid(row=4, column=4)
-        Radiobutton(self.frame1, text="4", variable=self.selected_value_att_2, value=4).grid(row=4, column=5)
-        Radiobutton(self.frame1, text="5", variable=self.selected_value_att_2, value=5).grid(row=4, column=6)
+        Radiobutton(self.frame1, text="0", variable=self.selected_value_att_2, value=0).grid(row=4, column=2)
+        Radiobutton(self.frame1, text="1", variable=self.selected_value_att_2, value=1).grid(row=4, column=3)
+        Radiobutton(self.frame1, text="2", variable=self.selected_value_att_2, value=2).grid(row=4, column=4)
+        Radiobutton(self.frame1, text="3", variable=self.selected_value_att_2, value=3).grid(row=4, column=5)
+        Radiobutton(self.frame1, text="4", variable=self.selected_value_att_2, value=4).grid(row=4, column=6)
+        Radiobutton(self.frame1, text="5", variable=self.selected_value_att_2, value=5).grid(row=4, column=7)
 
         Label(self.frame1, text="What is the chance the patient will move the correct token at his third attempt?").grid(row=6, column=0)
-        Radiobutton(self.frame1, text="1", variable=self.selected_value_att_3, value=1).grid(row=6, column=2)
-        Radiobutton(self.frame1, text="2", variable=self.selected_value_att_3, value=2).grid(row=6, column=3)
-        Radiobutton(self.frame1, text="3", variable=self.selected_value_att_3, value=3).grid(row=6, column=4)
-        Radiobutton(self.frame1, text="4", variable=self.selected_value_att_3, value=4).grid(row=6, column=5)
-        Radiobutton(self.frame1, text="5", variable=self.selected_value_att_3, value=5).grid(row=6, column=6)
+        Radiobutton(self.frame1, text="0", variable=self.selected_value_att_3, value=0).grid(row=6, column=2)
+        Radiobutton(self.frame1, text="1", variable=self.selected_value_att_3, value=1).grid(row=6, column=3)
+        Radiobutton(self.frame1, text="2", variable=self.selected_value_att_3, value=2).grid(row=6, column=4)
+        Radiobutton(self.frame1, text="3", variable=self.selected_value_att_3, value=3).grid(row=6, column=5)
+        Radiobutton(self.frame1, text="4", variable=self.selected_value_att_3, value=4).grid(row=6, column=6)
+        Radiobutton(self.frame1, text="5", variable=self.selected_value_att_3, value=5).grid(row=6, column=7)
 
         Label(self.frame1, text="What is the chance the patient will move the correct token at his fourth attempt?").grid(row=8)
-        Radiobutton(self.frame1, text="1", variable=self.selected_value_att_4, value=1).grid(row=8, column=2)
-        Radiobutton(self.frame1, text="2", variable=self.selected_value_att_4, value=2).grid(row=8, column=3)
-        Radiobutton(self.frame1, text="3", variable=self.selected_value_att_4, value=3).grid(row=8, column=4)
-        Radiobutton(self.frame1, text="4", variable=self.selected_value_att_4, value=4).grid(row=8, column=5)
-        Radiobutton(self.frame1, text="5", variable=self.selected_value_att_4, value=5).grid(row=8, column=6)
+        Radiobutton(self.frame1, text="0", variable=self.selected_value_att_4, value=0).grid(row=8, column=2)
+        Radiobutton(self.frame1, text="1", variable=self.selected_value_att_4, value=1).grid(row=8, column=3)
+        Radiobutton(self.frame1, text="2", variable=self.selected_value_att_4, value=2).grid(row=8, column=4)
+        Radiobutton(self.frame1, text="3", variable=self.selected_value_att_4, value=3).grid(row=8, column=5)
+        Radiobutton(self.frame1, text="4", variable=self.selected_value_att_4, value=4).grid(row=8, column=6)
+        Radiobutton(self.frame1, text="5", variable=self.selected_value_att_4, value=5).grid(row=8, column=7)
 
 
         Label(self.frame1, text="DONE?").grid(row=12)
@@ -105,26 +109,29 @@ class GUI():
 
         ##################################################################################
 
-        Label(self.frame2, text="What is the chance the patient will move the correct token at the beginning of the game?").grid(row=2, column=0)
-        Radiobutton(self.frame2, text="1", variable=self.selected_value_game_1, value=1).grid(row=2, column=2)
-        Radiobutton(self.frame2, text="2", variable=self.selected_value_game_1, value=2).grid(row=2, column=3)
-        Radiobutton(self.frame2, text="3", variable=self.selected_value_game_1, value=3).grid(row=2, column=4)
-        Radiobutton(self.frame2, text="4", variable=self.selected_value_game_1, value=4).grid(row=2, column=5)
-        Radiobutton(self.frame2, text="5", variable=self.selected_value_game_1, value=5).grid(row=2, column=6)
-
-        Label(self.frame2, text="What is the chance the patient will move the correct token in the middle of the game?").grid(row=4, column=0)
-        Radiobutton(self.frame2, text="1", variable=self.selected_value_game_2, value=1).grid(row=4, column=2)
-        Radiobutton(self.frame2, text="2", variable=self.selected_value_game_2, value=2).grid(row=4, column=3)
-        Radiobutton(self.frame2, text="3", variable=self.selected_value_game_2, value=3).grid(row=4, column=4)
-        Radiobutton(self.frame2, text="4", variable=self.selected_value_game_2, value=4).grid(row=4, column=5)
-        Radiobutton(self.frame2, text="5", variable=self.selected_value_game_2, value=5).grid(row=4, column=6)
-
-        Label(self.frame2, text="What is the chance the patient will move the correct token at the end?").grid(row=6, column=0)
-        Radiobutton(self.frame2, text="1", variable=self.selected_value_game_3, value=1).grid(row=6, column=2)
-        Radiobutton(self.frame2, text="2", variable=self.selected_value_game_3, value=2).grid(row=6, column=3)
-        Radiobutton(self.frame2, text="3", variable=self.selected_value_game_3, value=3).grid(row=6, column=4)
-        Radiobutton(self.frame2, text="4", variable=self.selected_value_game_3, value=4).grid(row=6, column=5)
-        Radiobutton(self.frame2, text="5", variable=self.selected_value_game_3, value=5).grid(row=6, column=6)
+        Label(self.frame2, text="What is the chance the patient will move the correct token at the beginning of the exercise?").grid(row=2, column=0)
+        Radiobutton(self.frame2, text="0", variable=self.selected_value_game_1, value=0).grid(row=2, column=2)
+        Radiobutton(self.frame2, text="1", variable=self.selected_value_game_1, value=1).grid(row=2, column=3)
+        Radiobutton(self.frame2, text="2", variable=self.selected_value_game_1, value=2).grid(row=2, column=4)
+        Radiobutton(self.frame2, text="3", variable=self.selected_value_game_1, value=3).grid(row=2, column=5)
+        Radiobutton(self.frame2, text="4", variable=self.selected_value_game_1, value=4).grid(row=2, column=6)
+        Radiobutton(self.frame2, text="5", variable=self.selected_value_game_1, value=5).grid(row=2, column=7)
+
+        Label(self.frame2, text="What is the chance the patient will move the correct token in the middle of the exercise?").grid(row=4, column=0)
+        Radiobutton(self.frame2, text="0", variable=self.selected_value_game_2, value=0).grid(row=4, column=2)
+        Radiobutton(self.frame2, text="1", variable=self.selected_value_game_2, value=1).grid(row=4, column=3)
+        Radiobutton(self.frame2, text="2", variable=self.selected_value_game_2, value=2).grid(row=4, column=4)
+        Radiobutton(self.frame2, text="3", variable=self.selected_value_game_2, value=3).grid(row=4, column=5)
+        Radiobutton(self.frame2, text="4", variable=self.selected_value_game_2, value=4).grid(row=4, column=6)
+        Radiobutton(self.frame2, text="5", variable=self.selected_value_game_2, value=5).grid(row=4, column=7)
+
+        Label(self.frame2, text="What is the chance the patient will move the correct token at the end of the exercise?").grid(row=6, column=0)
+        Radiobutton(self.frame2, text="0", variable=self.selected_value_game_3, value=0).grid(row=6, column=2)
+        Radiobutton(self.frame2, text="1", variable=self.selected_value_game_3, value=1).grid(row=6, column=3)
+        Radiobutton(self.frame2, text="2", variable=self.selected_value_game_3, value=2).grid(row=6, column=4)
+        Radiobutton(self.frame2, text="3", variable=self.selected_value_game_3, value=3).grid(row=6, column=5)
+        Radiobutton(self.frame2, text="4", variable=self.selected_value_game_3, value=4).grid(row=6, column=6)
+        Radiobutton(self.frame2, text="5", variable=self.selected_value_game_3, value=5).grid(row=6, column=7)
 
         Label(self.frame2, text="DONE?").grid(row=12)
         Button(self.frame2, text="OK", command=self.get_value_game).grid(row=13)
@@ -177,76 +184,82 @@ class GUI():
 
 
         #########################################################################################################
-        Label(self.frame4,  text="Would you offer LEV 0 at the user's first attempt?").grid(row=2)
+        Label(self.frame4,  text="Would you offer LEV 0 at the patient's first attempt?").grid(row=2)
         Radiobutton(self.frame4, text="1", variable=self.selected_value_ass_0_att_1, value=1).grid(row=2, column=2)
         Radiobutton(self.frame4, text="2", variable=self.selected_value_ass_0_att_1, value=2).grid(row=2, column=3)
         Radiobutton(self.frame4, text="3", variable=self.selected_value_ass_0_att_1, value=3).grid(row=2, column=4)
         Radiobutton(self.frame4, text="4", variable=self.selected_value_ass_0_att_1, value=4).grid(row=2, column=5)
         Radiobutton(self.frame4, text="5", variable=self.selected_value_ass_0_att_1, value=5).grid(row=2, column=6)
-        Label(self.frame4, text="Would you offer LEV 1 at the user's first attempt?").grid(row=4)
+        Label(self.frame4, text="Would you offer LEV 1 at the patient's first attempt?").grid(row=4)
         Radiobutton(self.frame4, text="1", variable=self.selected_value_ass_1_att_1, value=1).grid(row=4, column=2)
         Radiobutton(self.frame4, text="2", variable=self.selected_value_ass_1_att_1, value=2).grid(row=4, column=3)
         Radiobutton(self.frame4, text="3", variable=self.selected_value_ass_1_att_1, value=3).grid(row=4, column=4)
         Radiobutton(self.frame4, text="4", variable=self.selected_value_ass_1_att_1, value=4).grid(row=4, column=5)
         Radiobutton(self.frame4, text="5", variable=self.selected_value_ass_1_att_1, value=5).grid(row=4, column=6)
-        Label(frame4, text="Would you offer LEV 2 at the user's first attempt?").grid(row=6)
+        Label(frame4, text="Would you offer LEV 2 at the patient's first attempt?").grid(row=6)
         Radiobutton(self.frame4, text="1", variable=self.selected_value_ass_2_att_1, value=1).grid(row=6, column=2)
         Radiobutton(self.frame4, text="2", variable=self.selected_value_ass_2_att_1, value=2).grid(row=6, column=3)
         Radiobutton(self.frame4, text="3", variable=self.selected_value_ass_2_att_1, value=3).grid(row=6, column=4)
         Radiobutton(self.frame4, text="4", variable=self.selected_value_ass_2_att_1, value=4).grid(row=6, column=5)
         Radiobutton(self.frame4, text="5", variable=self.selected_value_ass_2_att_1, value=5).grid(row=6, column=6)
-        Label(self.frame4, text="Would you offer LEV 3 at the user's first attempt?").grid(row=8)
+        Label(self.frame4, text="Would you offer LEV 3 at the patient's first attempt?").grid(row=8)
         Radiobutton(self.frame4, text="1", variable=self.selected_value_ass_3_att_1, value=1).grid(row=8, column=2)
         Radiobutton(self.frame4, text="2", variable=self.selected_value_ass_3_att_1, value=2).grid(row=8, column=3)
         Radiobutton(self.frame4, text="3", variable=self.selected_value_ass_3_att_1, value=3).grid(row=8, column=4)
         Radiobutton(self.frame4, text="4", variable=self.selected_value_ass_3_att_1, value=4).grid(row=8, column=5)
         Radiobutton(self.frame4, text="5", variable=self.selected_value_ass_3_att_1, value=5).grid(row=8, column=6)
-        Label(self.frame4, text="Would you offer LEV 4 at the user's first attempt?").grid(row=10)
+        Label(self.frame4, text="Would you offer LEV 4 at the patient's first attempt?").grid(row=10)
         Radiobutton(self.frame4, text="1", variable=self.selected_value_ass_4_att_1, value=1).grid(row=10, column=2)
         Radiobutton(self.frame4, text="2", variable=self.selected_value_ass_4_att_1, value=2).grid(row=10, column=3)
         Radiobutton(self.frame4, text="3", variable=self.selected_value_ass_4_att_1, value=3).grid(row=10, column=4)
         Radiobutton(self.frame4, text="4", variable=self.selected_value_ass_4_att_1, value=4).grid(row=10, column=5)
         Radiobutton(self.frame4, text="5", variable=self.selected_value_ass_4_att_1, value=5).grid(row=10, column=6)
-        Label(self.frame4, text="Would you offer LEV 5 at the user's first attempt?").grid(row=12)
+        Label(self.frame4, text="Would you offer LEV 5 at the patient's first attempt?").grid(row=12)
         Radiobutton(self.frame4, text="1", variable=self.selected_value_ass_5_att_1, value=1).grid(row=12, column=2)
         Radiobutton(self.frame4, text="2", variable=self.selected_value_ass_5_att_1, value=2).grid(row=12, column=3)
         Radiobutton(self.frame4, text="3", variable=self.selected_value_ass_5_att_1, value=3).grid(row=12, column=4)
         Radiobutton(self.frame4, text="4", variable=self.selected_value_ass_5_att_1, value=4).grid(row=12, column=5)
         Radiobutton(self.frame4, text="5", variable=self.selected_value_ass_5_att_1, value=5).grid(row=12, column=6)
         Label(self.frame4, text="-----------------------------------------------------").grid(row=14)
-
-        row_att1= 15
-        Label(self.frame4, text="Would you offer LEV 0 at the user's second attempt?").grid(row=2+row_att1)
+        Radiobutton(self.frame4, text="1", variable=self.selected_value_ass_5_att_1, value=1).grid(row=14, column=2)
+        Radiobutton(self.frame4, text="2", variable=self.selected_value_ass_5_att_1, value=2).grid(row=14, column=3)
+        Radiobutton(self.frame4, text="3", variable=self.selected_value_ass_5_att_1, value=3).grid(row=14, column=4)
+        Radiobutton(self.frame4, text="4", variable=self.selected_value_ass_5_att_1, value=4).grid(row=14, column=5)
+        Radiobutton(self.frame4, text="5", variable=self.selected_value_ass_5_att_1, value=5).grid(row=14, column=6)
+        Label(self.frame4, text="-----------------------------------------------------").grid(row=16)
+
+        row_att1= 17
+        Label(self.frame4, text="Would you offer LEV 0 at the patient's second attempt?").grid(row=2+row_att1)
         Radiobutton(self.frame4, text="1", variable=self.selected_value_ass_0_att_2, value=1).grid(row=2+row_att1, column=2)
         Radiobutton(self.frame4, text="2", variable=self.selected_value_ass_0_att_2, value=2).grid(row=2+row_att1, column=3)
         Radiobutton(self.frame4, text="3", variable=self.selected_value_ass_0_att_2, value=3).grid(row=2+row_att1, column=4)
         Radiobutton(self.frame4, text="4", variable=self.selected_value_ass_0_att_2, value=4).grid(row=2+row_att1, column=5)
         Radiobutton(self.frame4, text="5", variable=self.selected_value_ass_0_att_2, value=5).grid(row=2+row_att1, column=6)
-        Label(self.frame4, text="Would you offer LEV 1 at the user's second attempt?").grid(row=4+row_att1)
+        Label(self.frame4, text="Would you offer LEV 1 at the patient's second attempt?").grid(row=4+row_att1)
         Radiobutton(self.frame4, text="1", variable=self.selected_value_ass_1_att_2, value=1).grid(row=4+row_att1, column=2)
         Radiobutton(self.frame4, text="2", variable=self.selected_value_ass_1_att_2, value=2).grid(row=4+row_att1, column=3)
         Radiobutton(self.frame4, text="3", variable=self.selected_value_ass_1_att_2, value=3).grid(row=4+row_att1, column=4)
         Radiobutton(self.frame4, text="4", variable=self.selected_value_ass_1_att_2, value=4).grid(row=4+row_att1, column=5)
         Radiobutton(self.frame4, text="5", variable=self.selected_value_ass_1_att_2, value=5).grid(row=4+row_att1, column=6)
-        Label(frame4, text="Would you offer LEV 2 at the user's second attempt?").grid(row=6+row_att1)
+        Label(frame4, text="Would you offer LEV 2 at the patient's second attempt?").grid(row=6+row_att1)
         Radiobutton(self.frame4, text="1", variable=self.selected_value_ass_2_att_2, value=1).grid(row=6+row_att1, column=2)
         Radiobutton(self.frame4, text="2", variable=self.selected_value_ass_2_att_2, value=2).grid(row=6+row_att1, column=3)
         Radiobutton(self.frame4, text="3", variable=self.selected_value_ass_2_att_2, value=3).grid(row=6+row_att1, column=4)
         Radiobutton(self.frame4, text="4", variable=self.selected_value_ass_2_att_2, value=4).grid(row=6+row_att1, column=5)
         Radiobutton(self.frame4, text="5", variable=self.selected_value_ass_2_att_2, value=5).grid(row=6+row_att1, column=6)
-        Label(self.frame4, text="Would you offer LEV 3 at the user's second attempt?").grid(row=8+row_att1)
+        Label(self.frame4, text="Would you offer LEV 3 at the patient's second attempt?").grid(row=8+row_att1)
         Radiobutton(self.frame4, text="1", variable=self.selected_value_ass_3_att_2, value=1).grid(row=8+row_att1, column=2)
         Radiobutton(self.frame4, text="2", variable=self.selected_value_ass_3_att_2, value=2).grid(row=8+row_att1, column=3)
         Radiobutton(self.frame4, text="3", variable=self.selected_value_ass_3_att_2, value=3).grid(row=8+row_att1, column=4)
         Radiobutton(self.frame4, text="4", variable=self.selected_value_ass_3_att_2, value=4).grid(row=8+row_att1, column=5)
         Radiobutton(self.frame4, text="5", variable=self.selected_value_ass_3_att_2, value=5).grid(row=8+row_att1, column=6)
-        Label(self.frame4, text="Would you offer LEV 4 at the user's second attempt?").grid(row=10+row_att1)
+        Label(self.frame4, text="Would you offer LEV 4 at the patient's second attempt?").grid(row=10+row_att1)
         Radiobutton(self.frame4, text="1", variable=self.selected_value_ass_4_att_2, value=1).grid(row=10+row_att1, column=2)
         Radiobutton(self.frame4, text="2", variable=self.selected_value_ass_4_att_2, value=2).grid(row=10+row_att1, column=3)
         Radiobutton(self.frame4, text="3", variable=self.selected_value_ass_4_att_2, value=3).grid(row=10+row_att1, column=4)
         Radiobutton(self.frame4, text="4", variable=self.selected_value_ass_4_att_2, value=4).grid(row=10+row_att1, column=5)
         Radiobutton(self.frame4, text="5", variable=self.selected_value_ass_4_att_2, value=5).grid(row=10+row_att1, column=6)
-        Label(self.frame4, text="Would you offer LEV 5 at the user's second attempt?").grid(row=12+row_att1)
+        Label(self.frame4, text="Would you offer LEV 5 at the patient's second attempt?").grid(row=12+row_att1)
         Radiobutton(self.frame4, text="1", variable=self.selected_value_ass_5_att_2, value=1).grid(row=12+row_att1, column=2)
         Radiobutton(self.frame4, text="2", variable=self.selected_value_ass_5_att_2, value=2).grid(row=12+row_att1, column=3)
         Radiobutton(self.frame4, text="3", variable=self.selected_value_ass_5_att_2, value=3).grid(row=12+row_att1, column=4)
@@ -254,39 +267,40 @@ class GUI():
         Radiobutton(self.frame4, text="5", variable=self.selected_value_ass_5_att_2, value=5).grid(row=12+row_att1, column=6)
         Label(self.frame4, text="-----------------------------------------------------").grid(row=14+row_att1)
 
+
         row_att2 = 15+row_att1
 
-        Label(self.frame4, text="Would you offer LEV 0 at the user's third attempt?").grid(row=2 + row_att2)
+        Label(self.frame4, text="Would you offer LEV 0 at the patient's third attempt?").grid(row=2 + row_att2)
         Radiobutton(self.frame4, text="1", variable=self.selected_value_ass_0_att_3, value=1).grid(row=2 + row_att2, column=2)
         Radiobutton(self.frame4, text="2", variable=self.selected_value_ass_0_att_3, value=2).grid(row=2 + row_att2, column=3)
         Radiobutton(self.frame4, text="3", variable=self.selected_value_ass_0_att_3, value=3).grid(row=2 + row_att2, column=4)
         Radiobutton(self.frame4, text="4", variable=self.selected_value_ass_0_att_3, value=4).grid(row=2 + row_att2, column=5)
         Radiobutton(self.frame4, text="5", variable=self.selected_value_ass_0_att_3, value=5).grid(row=2 + row_att2, column=6)
-        Label(self.frame4, text="Would you offer LEV 1 at the user's third attempt?").grid(row=4 + row_att2)
+        Label(self.frame4, text="Would you offer LEV 1 at the patient's third attempt?").grid(row=4 + row_att2)
         Radiobutton(self.frame4, text="1", variable=self.selected_value_ass_1_att_3, value=1).grid(row=4 + row_att2,column=2)
         Radiobutton(self.frame4, text="2", variable=self.selected_value_ass_1_att_3, value=2).grid(row=4 + row_att2,column=3)
         Radiobutton(self.frame4, text="3", variable=self.selected_value_ass_1_att_3, value=3).grid(row=4 + row_att2,column=4)
         Radiobutton(self.frame4, text="4", variable=self.selected_value_ass_1_att_3, value=4).grid(row=4 + row_att2,column=5)
         Radiobutton(self.frame4, text="5", variable=self.selected_value_ass_1_att_3, value=5).grid(row=4 + row_att2,column=6)
-        Label(frame4, text="Would you offer LEV 2 at the user's third attempt?").grid(row=6 + row_att2)
+        Label(frame4, text="Would you offer LEV 2 at the patient's third attempt?").grid(row=6 + row_att2)
         Radiobutton(self.frame4, text="1", variable=self.selected_value_ass_2_att_3, value=1).grid(row=6 + row_att2,column=2)
         Radiobutton(self.frame4, text="2", variable=self.selected_value_ass_2_att_3, value=2).grid(row=6 + row_att2,column=3)
         Radiobutton(self.frame4, text="3", variable=self.selected_value_ass_2_att_3, value=3).grid(row=6 + row_att2,column=4)
         Radiobutton(self.frame4, text="4", variable=self.selected_value_ass_2_att_3, value=4).grid(row=6 + row_att2,column=5)
         Radiobutton(self.frame4, text="5", variable=self.selected_value_ass_2_att_3, value=5).grid(row=6 + row_att2,column=6)
-        Label(self.frame4, text="Would you offer LEV 3 at the user's third attempt?").grid(row=8 + row_att2)
+        Label(self.frame4, text="Would you offer LEV 3 at the patient's third attempt?").grid(row=8 + row_att2)
         Radiobutton(self.frame4, text="1", variable=self.selected_value_ass_3_att_3, value=1).grid(row=8 + row_att2,column=2)
         Radiobutton(self.frame4, text="2", variable=self.selected_value_ass_3_att_3, value=2).grid(row=8 + row_att2,column=3)
         Radiobutton(self.frame4, text="3", variable=self.selected_value_ass_3_att_3, value=3).grid(row=8 + row_att2,column=4)
         Radiobutton(self.frame4, text="4", variable=self.selected_value_ass_3_att_3, value=4).grid(row=8 + row_att2,column=5)
         Radiobutton(self.frame4, text="5", variable=self.selected_value_ass_3_att_3, value=5).grid(row=8 + row_att2,column=6)
-        Label(self.frame4, text="Would you offer LEV 4 at the user's third attempt?").grid(row=10 + row_att2)
+        Label(self.frame4, text="Would you offer LEV 4 at the patient's third attempt?").grid(row=10 + row_att2)
         Radiobutton(self.frame4, text="1", variable=self.selected_value_ass_4_att_3, value=1).grid(row=10 + row_att2,column=2)
         Radiobutton(self.frame4, text="2", variable=self.selected_value_ass_4_att_3, value=2).grid(row=10 + row_att2,column=3)
         Radiobutton(self.frame4, text="3", variable=self.selected_value_ass_4_att_3, value=3).grid(row=10 + row_att2,column=4)
         Radiobutton(self.frame4, text="4", variable=self.selected_value_ass_4_att_3, value=4).grid(row=10 + row_att2,column=5)
         Radiobutton(self.frame4, text="5", variable=self.selected_value_ass_4_att_3, value=5).grid(row=10 + row_att2,column=6)
-        Label(self.frame4, text="Would you offer LEV 5 at the user's third attempt?").grid(row=12 + row_att2)
+        Label(self.frame4, text="Would you offer LEV 5 at the patient's third attempt?").grid(row=12 + row_att2)
         Radiobutton(self.frame4, text="1", variable=self.selected_value_ass_5_att_3, value=1).grid(row=12 + row_att2,column=2)
         Radiobutton(self.frame4, text="2", variable=self.selected_value_ass_5_att_3, value=2).grid(row=12 + row_att2,column=3)
         Radiobutton(self.frame4, text="3", variable=self.selected_value_ass_5_att_3, value=3).grid(row=12 + row_att2,column=4)
@@ -295,37 +309,37 @@ class GUI():
         Label(self.frame4, text="-----------------------------------------------------").grid(row=14+row_att2)
 
         row_att3 = 15+row_att2
-        Label(self.frame4, text="Would you offer LEV 0 at the user's fourth attempt?").grid(row=2 + row_att3)
+        Label(self.frame4, text="Would you offer LEV 0 at the patient's fourth attempt?").grid(row=2 + row_att3)
         Radiobutton(self.frame4, text="1", variable=self.selected_value_ass_0_att_4, value=1).grid(row=2 + row_att3,column=2)
         Radiobutton(self.frame4, text="2", variable=self.selected_value_ass_0_att_4, value=2).grid(row=2 + row_att3,column=3)
         Radiobutton(self.frame4, text="3", variable=self.selected_value_ass_0_att_4, value=3).grid(row=2 + row_att3,column=4)
         Radiobutton(self.frame4, text="4", variable=self.selected_value_ass_0_att_4, value=4).grid(row=2 + row_att3,column=5)
         Radiobutton(self.frame4, text="5", variable=self.selected_value_ass_0_att_4, value=5).grid(row=2 + row_att3,column=6)
-        Label(self.frame4, text="Would you offer LEV 1 at the user's fourth attempt?").grid(row=4 + row_att3)
+        Label(self.frame4, text="Would you offer LEV 1 at the patient's fourth attempt?").grid(row=4 + row_att3)
         Radiobutton(self.frame4, text="1", variable=self.selected_value_ass_1_att_4, value=1).grid(row=4 + row_att3,column=2)
         Radiobutton(self.frame4, text="2", variable=self.selected_value_ass_1_att_4, value=2).grid(row=4 + row_att3,column=3)
         Radiobutton(self.frame4, text="3", variable=self.selected_value_ass_1_att_4, value=3).grid(row=4 + row_att3,column=4)
         Radiobutton(self.frame4, text="4", variable=self.selected_value_ass_1_att_4, value=4).grid(row=4 + row_att3,column=5)
         Radiobutton(self.frame4, text="5", variable=self.selected_value_ass_1_att_4, value=5).grid(row=4 + row_att3,column=6)
-        Label(frame4, text="Would you offer LEV 2 at the user's fourth attempt?").grid(row=6 + row_att3)
+        Label(frame4, text="Would you offer LEV 2 at the patient's fourth attempt?").grid(row=6 + row_att3)
         Radiobutton(self.frame4, text="1", variable=self.selected_value_ass_2_att_4, value=1).grid(row=6 + row_att3,column=2)
         Radiobutton(self.frame4, text="2", variable=self.selected_value_ass_2_att_4, value=2).grid(row=6 + row_att3,column=3)
         Radiobutton(self.frame4, text="3", variable=self.selected_value_ass_2_att_4, value=3).grid(row=6 + row_att3,column=4)
         Radiobutton(self.frame4, text="4", variable=self.selected_value_ass_2_att_4, value=4).grid(row=6 + row_att3,column=5)
         Radiobutton(self.frame4, text="5", variable=self.selected_value_ass_2_att_4, value=5).grid(row=6 + row_att3,column=6)
-        Label(self.frame4, text="Would you offer LEV 3 at the user's fourth attempt?").grid(row=8 + row_att3)
+        Label(self.frame4, text="Would you offer LEV 3 at the patient's fourth attempt?").grid(row=8 + row_att3)
         Radiobutton(self.frame4, text="1", variable=self.selected_value_ass_3_att_4, value=1).grid(row=8 + row_att3,column=2)
         Radiobutton(self.frame4, text="2", variable=self.selected_value_ass_3_att_4, value=2).grid(row=8 + row_att3,column=3)
         Radiobutton(self.frame4, text="3", variable=self.selected_value_ass_3_att_4, value=3).grid(row=8 + row_att3,column=4)
         Radiobutton(self.frame4, text="4", variable=self.selected_value_ass_3_att_4, value=4).grid(row=8 + row_att3,column=5)
         Radiobutton(self.frame4, text="5", variable=self.selected_value_ass_3_att_4, value=5).grid(row=8 + row_att3,column=6)
-        Label(self.frame4, text="Would you offer LEV 4 at the user's fourth attempt?").grid(row=10 + row_att3)
+        Label(self.frame4, text="Would you offer LEV 4 at the patient's fourth attempt?").grid(row=10 + row_att3)
         Radiobutton(self.frame4, text="1", variable=self.selected_value_ass_4_att_4, value=1).grid(row=10 + row_att3,column=2)
         Radiobutton(self.frame4, text="2", variable=self.selected_value_ass_4_att_4, value=2).grid(row=10 + row_att3,column=3)
         Radiobutton(self.frame4, text="3", variable=self.selected_value_ass_4_att_4, value=3).grid(row=10 + row_att3,column=4)
         Radiobutton(self.frame4, text="4", variable=self.selected_value_ass_4_att_4, value=4).grid(row=10 + row_att3,column=5)
         Radiobutton(self.frame4, text="5", variable=self.selected_value_ass_4_att_4, value=5).grid(row=10 + row_att3,column=6)
-        Label(self.frame4, text="Would you offer LEV 5 at the user's fourth attempt?").grid(row=12 + row_att3)
+        Label(self.frame4, text="Would you offer LEV 5 at the patient's fourth attempt?").grid(row=12 + row_att3)
         Radiobutton(self.frame4, text="1", variable=self.selected_value_ass_5_att_4, value=1).grid(row=12 + row_att3,column=2)
         Radiobutton(self.frame4, text="2", variable=self.selected_value_ass_5_att_4, value=2).grid(row=12 + row_att3,column=3)
         Radiobutton(self.frame4, text="3", variable=self.selected_value_ass_5_att_4, value=3).grid(row=12 + row_att3,column=4)
diff --git a/therapist-patient-interaction/1000/True/2/log_gen.csv b/therapist-patient-interaction/1000/True/2/log_gen.csv
deleted file mode 100644
index 6982083e20d14f96e7f3a5df36d86181bd954439..0000000000000000000000000000000000000000
--- a/therapist-patient-interaction/1000/True/2/log_gen.csv
+++ /dev/null
@@ -1,6 +0,0 @@
-cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
-0.916,1,6.416,8,1,,565,0,0.0,3
-0.772,2,0.785,6,2,,499,0,0.0,2
-0.475,3,7.12,9,3,,321,0,0.0,2
-0.99,4,2.044,18,4,,311,0,0.0,3
-0.0,5,0.0,15,4,,177,0,0.0,1
diff --git a/therapist-patient-interaction/1000/True/2/log_spec.csv b/therapist-patient-interaction/1000/True/2/log_spec.csv
deleted file mode 100644
index 58a68736c653467acfbbcd97cf2e338250ae1bf0..0000000000000000000000000000000000000000
--- a/therapist-patient-interaction/1000/True/2/log_spec.csv
+++ /dev/null
@@ -1,12 +0,0 @@
-game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
-0,1,0,0,0.0,0,2,19,0.0,19,0,135
-0,2,1,0,15,0,0,,0,,0,
-0,0,2,0,6.416,0,1,8,0.916,1,1,565
-0,2,0,0,15,0,0,,0,,1,
-0,0,1,0,0.785,0,2,6,0.772,2,2,499
-1,2,0,0,15,0,0,,0,,2,
-1,0,1,0,7.12,0,1,9,0.475,3,3,321
-1,2,0,0,15,0,0,,0,,3,
-1,1,1,0,2.044,0,2,15,0.99,0,4,177
-1,0,2,0,0.0,0,2,18,0.0,4,4,311
-2,0,0,0,0.0,0,2,15,0.0,5,4,177
diff --git a/therapist-patient-interaction/1000/True/3/log_gen.csv b/therapist-patient-interaction/1000/True/3/log_gen.csv
deleted file mode 100644
index dfcc82db940e29802670d256d17bc361b9cadf12..0000000000000000000000000000000000000000
--- a/therapist-patient-interaction/1000/True/3/log_gen.csv
+++ /dev/null
@@ -1,6 +0,0 @@
-cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
-0.0,1,0.0,1,0,,715,0,0.0,1
-0.0,2,0.0,7,0,,671,0,0.0,1
-0.0,3,0.0,16,1,,667,0,0.0,2
-0.0,4,0.0,12,1,,661,0,0.0,2
-0.0,5,0.0,14,1,,619,0,0.0,2
diff --git a/therapist-patient-interaction/1000/True/3/log_spec.csv b/therapist-patient-interaction/1000/True/3/log_spec.csv
deleted file mode 100644
index 8e4f736373203355e4cad505f9ec2d3a7380535a..0000000000000000000000000000000000000000
--- a/therapist-patient-interaction/1000/True/3/log_spec.csv
+++ /dev/null
@@ -1,9 +0,0 @@
-game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
-0,0,0,0,0.0,0,2,1,0.0,1,0,715
-0,0,0,0,0.0,0,2,7,0.0,2,0,671
-1,2,0,0,15,0,0,,0,,0,
-1,0,1,0,0.0,0,2,16,0.0,3,1,667
-1,1,0,0,0.0,0,2,12,0.0,0,1,661
-1,0,1,0,0.0,0,2,12,0.0,4,1,661
-2,1,0,0,0.0,0,2,14,0.0,0,1,619
-2,0,1,0,0.0,0,2,14,0.0,5,1,619
diff --git a/therapist-patient-interaction/19/False/1/bn_variables.csv b/therapist-patient-interaction/19/False/1/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..bbcf1eb65e59bd37c78ef97d73413fd41cd589f8
--- /dev/null
+++ b/therapist-patient-interaction/19/False/1/bn_variables.csv
@@ -0,0 +1,12 @@
+user_action,game_state,attempt,agent_assistance
+1,0,0,0
+2,0,1,1
+1,0,2,2
+0,0,3,1
+2,0,0,0
+2,0,1,1
+0,0,2,2
+2,1,0,0
+0,1,1,1
+0,1,0,0
+0,2,0,0
diff --git a/therapist-patient-interaction/19/False/1/log_gen.csv b/therapist-patient-interaction/19/False/1/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..54cb6556546b2b49e5a788d30d782a40561f483f
--- /dev/null
+++ b/therapist-patient-interaction/19/False/1/log_gen.csv
@@ -0,0 +1,6 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
+2.455,1,27.716,12,1,,947,0,0.0,4
+0.0,2,0.0,8,2,,693,0,0.0,3
+1.007,3,3.47,20,1,,537,0,0.0,2
+0.744,4,14.901,15,0,,391,0,0.0,1
+0.339,5,10.72,10,0,,373,0,0.0,1
diff --git a/therapist-patient-interaction/19/False/1/log_params.csv b/therapist-patient-interaction/19/False/1/log_params.csv
new file mode 100644
index 0000000000000000000000000000000000000000..2ab054a0aa28e1b6b745ebe795596601bc32b1c8
--- /dev/null
+++ b/therapist-patient-interaction/19/False/1/log_params.csv
@@ -0,0 +1,2 @@
+with_feedback,objective,session,user_id,timeout
+False,descending_odd,1,19,15
diff --git a/therapist-patient-interaction/19/False/1/log_spec.csv b/therapist-patient-interaction/19/False/1/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..d84869e6bfcef7effba1c651e36a29e0da9545d2
--- /dev/null
+++ b/therapist-patient-interaction/19/False/1/log_spec.csv
@@ -0,0 +1,12 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
+0,1,0,0,6.683,0,1,1,0.79,9,0,906
+0,2,1,0,15,0,0,,0,,0,
+0,1,2,0,10.879,0,0,1,0.897,14,1,606
+0,0,3,0,10.154,0,0,12,0.768,1,0,947
+0,2,0,0,15,0,0,,0,,0,
+0,2,1,0,15,0,0,,0,,1,
+0,0,2,0,0.0,0,2,8,0.0,2,0,693
+1,2,0,0,15,0,0,,0,,0,
+1,0,1,0,3.47,0,2,20,1.007,3,0,537
+1,0,0,0,14.901,0,0,15,0.744,4,0,391
+2,0,0,0,10.72,0,0,10,0.339,5,0,373
diff --git a/therapist-patient-interaction/1000/True/2/log_summary.csv b/therapist-patient-interaction/19/False/1/log_summary.csv
similarity index 61%
rename from therapist-patient-interaction/1000/True/2/log_summary.csv
rename to therapist-patient-interaction/19/False/1/log_summary.csv
index bd39f7367ea2db48b02258c3de3f71641a203fbf..f61abd95b7386f6091586f51d097db13255d2134 100644
--- a/therapist-patient-interaction/1000/True/2/log_summary.csv
+++ b/therapist-patient-interaction/19/False/1/log_summary.csv
@@ -1,2 +1,2 @@
 tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
-3.1530000000000005,0.0,16.365000000000002,14,11,0
+4.545,0.0,56.807,4,11,0
diff --git a/therapist-patient-interaction/19/False/2/bn_variables.csv b/therapist-patient-interaction/19/False/2/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..fbd1ee75393347871bd3f5df6d52a8d4114685fe
--- /dev/null
+++ b/therapist-patient-interaction/19/False/2/bn_variables.csv
@@ -0,0 +1,8 @@
+user_action,game_state,attempt,agent_assistance
+0,0,0,0
+0,0,0,0
+0,1,0,0
+0,1,0,0
+2,2,0,0
+1,2,1,1
+0,2,2,2
diff --git a/therapist-patient-interaction/19/False/2/log_gen.csv b/therapist-patient-interaction/19/False/2/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..a23e30e97e2a1aebcc555912d8de203b325f2a1d
--- /dev/null
+++ b/therapist-patient-interaction/19/False/2/log_gen.csv
@@ -0,0 +1,6 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
+0.85,1,12.238,18,0,,715,0,0.0,1
+0.623,2,12.074,12,0,,671,0,0.0,1
+0.901,3,10.781,16,0,,667,0,0.0,1
+0.861,4,7.304,20,0,,661,0,0.0,1
+1.203,5,10.075,19,1,,619,0,0.0,3
diff --git a/therapist-patient-interaction/19/False/2/log_params.csv b/therapist-patient-interaction/19/False/2/log_params.csv
new file mode 100644
index 0000000000000000000000000000000000000000..3db4335ee8d945124241015f5561df3bad866683
--- /dev/null
+++ b/therapist-patient-interaction/19/False/2/log_params.csv
@@ -0,0 +1,2 @@
+with_feedback,objective,session,user_id,timeout
+False,descending_odd,2,19,15
diff --git a/therapist-patient-interaction/19/False/2/log_spec.csv b/therapist-patient-interaction/19/False/2/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..c0d3f9f914b1967f09a6299643493ebafa4a0cd5
--- /dev/null
+++ b/therapist-patient-interaction/19/False/2/log_spec.csv
@@ -0,0 +1,8 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
+0,0,0,0,12.238,0,0,18,0.85,1,0,715
+0,0,0,0,12.074,0,0,12,0.623,2,0,671
+1,0,0,0,10.781,0,0,16,0.901,3,0,667
+1,0,0,0,7.304,0,1,20,0.861,4,0,661
+2,2,0,0,15,0,0,,0,,0,
+2,1,1,0,0.484,0,2,5,0.479,10,1,125
+2,0,2,0,9.591,0,1,19,0.723,5,0,619
diff --git a/therapist-patient-interaction/19/False/2/log_summary.csv b/therapist-patient-interaction/19/False/2/log_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..26686042e55fd0bb51a8f7cc63e3b39cf2a3e050
--- /dev/null
+++ b/therapist-patient-interaction/19/False/2/log_summary.csv
@@ -0,0 +1,2 @@
+tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
+4.438,0.0,52.471999999999994,1,7,0
diff --git a/therapist-patient-interaction/19/False/3/bn_variables.csv b/therapist-patient-interaction/19/False/3/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..aeda8ebd537308e3894a8e647bd669179fdb3cf8
--- /dev/null
+++ b/therapist-patient-interaction/19/False/3/bn_variables.csv
@@ -0,0 +1,15 @@
+user_action,game_state,attempt,agent_assistance
+2,0,0,0
+1,0,1,1
+1,0,2,1
+2,0,3,2
+2,0,0,0
+1,0,1,1
+2,0,2,2
+0,0,3,3
+1,1,0,0
+1,1,1,1
+0,1,2,2
+0,1,0,0
+2,2,0,0
+0,2,1,1
diff --git a/therapist-patient-interaction/19/False/3/log_gen.csv b/therapist-patient-interaction/19/False/3/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..a1b1a1e93650ec3db64ac79fed875cee48ffa466
--- /dev/null
+++ b/therapist-patient-interaction/19/False/3/log_gen.csv
@@ -0,0 +1,6 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
+0.0,1,0.0,14,1,,565,0,0.0,4
+3.056,2,12.736,11,3,,499,0,0.0,4
+2.286,3,28.101,8,0,,321,0,0.0,3
+0.924,4,10.918,15,0,,311,0,0.0,1
+0.0,5,0.0,17,1,,177,0,0.0,2
diff --git a/therapist-patient-interaction/19/False/3/log_params.csv b/therapist-patient-interaction/19/False/3/log_params.csv
new file mode 100644
index 0000000000000000000000000000000000000000..bcba6f189eb65bb24863bc1b0f3a33e8a6df9cc6
--- /dev/null
+++ b/therapist-patient-interaction/19/False/3/log_params.csv
@@ -0,0 +1,2 @@
+with_feedback,objective,session,user_id,timeout
+False,descending_odd,3,19,15
diff --git a/therapist-patient-interaction/19/False/3/log_spec.csv b/therapist-patient-interaction/19/False/3/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..755ce31e76c806abbf78082848be8ffd3e332ed6
--- /dev/null
+++ b/therapist-patient-interaction/19/False/3/log_spec.csv
@@ -0,0 +1,15 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
+0,2,0,0,15,0,0,,0,,0,
+0,1,1,0,0.0,0,2,19,0.0,0,1,584
+0,1,2,0,0.0,0,2,1,0.0,19,1,584
+0,2,3,0,15,0,0,,0,,0,
+0,2,0,0,15,0,0,,0,,1,
+0,1,1,0,6.601,0,1,2,1.2,15,2,311
+0,2,2,0,15,0,0,,0,,2,
+0,0,3,0,6.135,0,1,11,1.855,2,0,499
+1,1,0,0,11.788,0,0,3,1.033,17,0,177
+1,1,1,0,10.155,0,0,3,0.909,15,0,311
+1,0,2,0,6.157,0,1,8,0.344,3,0,321
+1,0,0,0,10.918,0,0,15,0.924,4,0,311
+2,2,0,0,15,0,0,,0,,0,
+2,0,1,0,0.0,0,2,17,0.0,5,0,177
diff --git a/therapist-patient-interaction/19/False/3/log_summary.csv b/therapist-patient-interaction/19/False/3/log_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..b26c620c8fd1c0ca5314e218a89069f7048aa402
--- /dev/null
+++ b/therapist-patient-interaction/19/False/3/log_summary.csv
@@ -0,0 +1,2 @@
+tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
+6.266000000000001,0.0,51.755,5,14,0
diff --git a/therapist-patient-interaction/19/True/1/bn_variables.csv b/therapist-patient-interaction/19/True/1/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..db2ba338223d4a60d909b52e09b2d4667ab11e73
--- /dev/null
+++ b/therapist-patient-interaction/19/True/1/bn_variables.csv
@@ -0,0 +1,12 @@
+user_action,game_state,attempt,agent_assistance
+1,0,0,0
+0,0,1,1
+1,0,0,0
+2,0,1,1
+0,0,2,2
+0,1,0,0
+0,1,0,0
+1,2,0,0
+2,2,1,1
+1,2,2,2
+0,2,3,1
diff --git a/therapist-patient-interaction/19/True/1/log_gen.csv b/therapist-patient-interaction/19/True/1/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..7fb028213b8c3c41b11a9412eee1c2609ad61e0b
--- /dev/null
+++ b/therapist-patient-interaction/19/True/1/log_gen.csv
@@ -0,0 +1,6 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
+3.883,1,24.926,14,0,,947,0,0.0,2
+2.704,2,12.931,9,1,,693,0,0.0,3
+1.102,3,7.917,10,0,,537,0,0.0,1
+0.66,4,7.737,7,0,,391,0,0.0,1
+3.944,5,8.651,17,1,,373,0,0.0,4
diff --git a/therapist-patient-interaction/19/True/1/log_params.csv b/therapist-patient-interaction/19/True/1/log_params.csv
new file mode 100644
index 0000000000000000000000000000000000000000..3e01ce1278b802fcc35603fe8b3b59e4a2652f4a
--- /dev/null
+++ b/therapist-patient-interaction/19/True/1/log_params.csv
@@ -0,0 +1,2 @@
+with_feedback,objective,session,user_id,timeout
+True,descending_odd,1,19,15
diff --git a/therapist-patient-interaction/19/True/1/log_spec.csv b/therapist-patient-interaction/19/True/1/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..b2ddea4d42b9f7b693a7e7c51eab509f64b7dba3
--- /dev/null
+++ b/therapist-patient-interaction/19/True/1/log_spec.csv
@@ -0,0 +1,12 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
+0,1,0,0,12.138,0,0,17,2.835,17,0,373
+0,0,1,0,12.788,0,0,14,1.049,1,0,947
+0,1,0,0,8.55,0,1,6,1.906,6,0,906
+0,2,1,0,15,0,0,,0,,0,
+0,0,2,0,4.381,0,2,9,0.799,2,0,693
+1,0,0,0,7.917,0,1,10,1.102,3,0,537
+1,0,0,0,7.737,0,1,7,0.66,4,0,391
+2,1,0,0,2.126,0,2,8,1.285,8,0,135
+2,2,1,0,15,0,0,,0,,0,
+2,1,2,0,3.259,0,2,16,1.751,16,1,125
+2,0,3,0,3.265,0,2,17,0.908,5,0,373
diff --git a/therapist-patient-interaction/19/True/1/log_summary.csv b/therapist-patient-interaction/19/True/1/log_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..11516a0e5aea3e8727fad45489b7e93fd89fcd3d
--- /dev/null
+++ b/therapist-patient-interaction/19/True/1/log_summary.csv
@@ -0,0 +1,2 @@
+tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
+12.293,0.0,62.162000000000006,2,11,0
diff --git a/therapist-patient-interaction/19/True/2/bn_variables.csv b/therapist-patient-interaction/19/True/2/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..615fef88217d00cc73784a6d73e19441b91e3764
--- /dev/null
+++ b/therapist-patient-interaction/19/True/2/bn_variables.csv
@@ -0,0 +1,11 @@
+user_action,game_state,attempt,agent_assistance
+0,0,0,0
+0,0,0,0
+0,1,0,0
+1,1,0,0
+2,1,1,1
+0,1,2,2
+1,2,0,0
+1,2,1,0
+2,2,2,2
+1,2,3,0
diff --git a/therapist-patient-interaction/19/True/2/log_gen.csv b/therapist-patient-interaction/19/True/2/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..ce457625c91cc2b96811d71fcbd84fb5ed429056
--- /dev/null
+++ b/therapist-patient-interaction/19/True/2/log_gen.csv
@@ -0,0 +1,6 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
+1.812,1,11.898,15,0,,715,0,0.0,1
+1.021,2,12.947,17,0,,671,0,0.0,1
+0.701,3,8.344,20,0,,667,0,0.0,1
+1.656,4,20.329,19,1,,661,0,0.0,3
+3.089,5,21.959,7,1,,619,0,0.0,4
diff --git a/therapist-patient-interaction/19/True/2/log_params.csv b/therapist-patient-interaction/19/True/2/log_params.csv
new file mode 100644
index 0000000000000000000000000000000000000000..7e49918722d1182198d1e8bc45bd9552ce12ac88
--- /dev/null
+++ b/therapist-patient-interaction/19/True/2/log_params.csv
@@ -0,0 +1,2 @@
+with_feedback,objective,session,user_id,timeout
+True,descending_odd,2,19,15
diff --git a/therapist-patient-interaction/19/True/2/log_spec.csv b/therapist-patient-interaction/19/True/2/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..5dfecc5150a0326054cbf7ca8fd21220092da6e7
--- /dev/null
+++ b/therapist-patient-interaction/19/True/2/log_spec.csv
@@ -0,0 +1,11 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
+0,0,0,0,11.898,0,0,15,1.812,1,0,715
+0,0,0,0,12.947,0,0,17,1.021,2,0,671
+1,0,0,0,8.344,0,1,20,0.701,3,0,667
+1,1,0,0,8.083,0,1,4,0.486,9,0,593
+1,2,1,0,15,0,0,,0,,0,
+1,0,2,0,12.246,0,0,19,1.17,4,0,661
+2,1,0,0,10.545,0,0,5,0.659,8,0,587
+2,1,1,0,11.35,0,0,9,1.447,9,0,593
+2,2,2,0,15,0,0,,0,,0,
+2,1,3,0,0.065,0,2,7,0.983,5,0,619
diff --git a/therapist-patient-interaction/19/True/2/log_summary.csv b/therapist-patient-interaction/19/True/2/log_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..b1f7120bdf79d19917d43db0e3c758647d1e06e4
--- /dev/null
+++ b/therapist-patient-interaction/19/True/2/log_summary.csv
@@ -0,0 +1,2 @@
+tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
+8.279,0.0,75.477,2,10,0
diff --git a/therapist-patient-interaction/19/True/3/bn_variables.csv b/therapist-patient-interaction/19/True/3/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..affcef022f2cb33d0cc33396b5249a1f1239ba99
--- /dev/null
+++ b/therapist-patient-interaction/19/True/3/bn_variables.csv
@@ -0,0 +1,13 @@
+user_action,game_state,attempt,agent_assistance
+1,0,0,0
+2,0,1,1
+0,0,2,2
+2,0,0,0
+0,0,1,1
+2,1,0,0
+1,1,1,1
+2,1,2,2
+0,1,3,3
+0,1,0,0
+1,2,0,0
+0,2,1,1
diff --git a/therapist-patient-interaction/19/True/3/log_gen.csv b/therapist-patient-interaction/19/True/3/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..d58f308272b9d5c845df750db35bdb2e13779303
--- /dev/null
+++ b/therapist-patient-interaction/19/True/3/log_gen.csv
@@ -0,0 +1,6 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
+2.716,1,14.101,8,1,,565,0,0.0,3
+0.764,2,3.439,13,1,,499,0,0.0,2
+0.0,3,0.0,17,2,,321,0,0.0,4
+1.071,4,7.867,14,0,,311,0,0.0,1
+1.232,5,23.1,16,0,,177,0,0.0,2
diff --git a/therapist-patient-interaction/19/True/3/log_params.csv b/therapist-patient-interaction/19/True/3/log_params.csv
new file mode 100644
index 0000000000000000000000000000000000000000..810c2f8f055f12a8fe752a02f80db11332ef1647
--- /dev/null
+++ b/therapist-patient-interaction/19/True/3/log_params.csv
@@ -0,0 +1,2 @@
+with_feedback,objective,session,user_id,timeout
+True,descending_odd,3,19,15
diff --git a/therapist-patient-interaction/19/True/3/log_spec.csv b/therapist-patient-interaction/19/True/3/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..98ee6724372379c5b2a6c48626acc7f85bf372f3
--- /dev/null
+++ b/therapist-patient-interaction/19/True/3/log_spec.csv
@@ -0,0 +1,13 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
+0,1,0,0,9.879,0,1,11,1.753,11,0,732
+0,2,1,0,15,0,0,,0,,0,
+0,0,2,0,4.222,0,2,8,0.963,1,0,565
+0,2,0,0,15,0,0,,0,,0,
+0,0,1,0,3.439,0,2,13,0.764,2,0,499
+1,2,0,0,15,0,0,,0,,0,
+1,1,1,0,0.0,0,2,3,0.0,14,1,311
+1,2,2,0,15,0,0,,0,,1,
+1,0,3,0,0.0,0,2,17,0.0,3,0,321
+1,0,0,0,7.867,0,1,14,1.071,4,0,311
+2,1,0,0,12.863,0,0,5,0.336,10,0,135
+2,0,1,0,10.237,0,0,16,0.896,5,0,177
diff --git a/therapist-patient-interaction/19/True/3/log_summary.csv b/therapist-patient-interaction/19/True/3/log_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..4189a72331cb553ca80ec5ab56d19994472830ea
--- /dev/null
+++ b/therapist-patient-interaction/19/True/3/log_summary.csv
@@ -0,0 +1,2 @@
+tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
+5.783,0.0,48.507000000000005,4,12,0
diff --git a/therapist-patient-interaction/20/False/1/bn_variables.csv b/therapist-patient-interaction/20/False/1/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..12577a050f732736ef7b6d90572b047b2955ecd5
--- /dev/null
+++ b/therapist-patient-interaction/20/False/1/bn_variables.csv
@@ -0,0 +1,8 @@
+user_action,game_state,attempt,agent_assistance
+2,0,0,0
+0,0,1,2
+2,0,0,0
+0,0,1,2
+0,1,0,0
+0,1,0,0
+0,2,0,0
diff --git a/therapist-patient-interaction/20/False/1/log_gen.csv b/therapist-patient-interaction/20/False/1/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..148cbb22a93d42c5d66cf535b35e44ed629daf9a
--- /dev/null
+++ b/therapist-patient-interaction/20/False/1/log_gen.csv
@@ -0,0 +1,6 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
+0.0,1,0.0,15,1,,947,0,0.0,2
+0.941,2,1.741,13,1,,693,0,0.0,2
+1.411,3,9.232,11,0,,537,0,0.0,1
+0.501,4,9.859,8,0,,391,0,0.0,1
+0.747,5,6.482,17,0,,373,0,0.0,1
diff --git a/therapist-patient-interaction/20/False/1/log_params.csv b/therapist-patient-interaction/20/False/1/log_params.csv
new file mode 100644
index 0000000000000000000000000000000000000000..3f2d76f42edda4948f4f215deeef978ad46756ec
--- /dev/null
+++ b/therapist-patient-interaction/20/False/1/log_params.csv
@@ -0,0 +1,2 @@
+with_feedback,objective,session,user_id,timeout
+False,descending_odd,1,20,10
diff --git a/therapist-patient-interaction/20/False/1/log_spec.csv b/therapist-patient-interaction/20/False/1/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..203d94d122b9f626419c470eb24057e3b5a1764d
--- /dev/null
+++ b/therapist-patient-interaction/20/False/1/log_spec.csv
@@ -0,0 +1,8 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
+0,2,0,0,10,0,0,,0,,0,
+0,0,1,0,0.0,0,2,15,0.0,1,0,947
+0,2,0,0,10,0,0,,0,,0,
+0,0,1,0,1.741,0,2,13,0.941,2,0,693
+1,0,0,0,9.232,0,1,11,1.411,3,0,537
+1,0,0,0,9.859,0,1,8,0.501,4,0,391
+2,0,0,0,6.482,0,1,17,0.747,5,0,373
diff --git a/therapist-patient-interaction/20/False/1/log_summary.csv b/therapist-patient-interaction/20/False/1/log_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..ff3c8c1ebf3611a783e678bb808917a35c946e96
--- /dev/null
+++ b/therapist-patient-interaction/20/False/1/log_summary.csv
@@ -0,0 +1,2 @@
+tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
+3.5999999999999996,0.0,27.314,2,7,0
diff --git a/therapist-patient-interaction/20/False/2/bn_variables.csv b/therapist-patient-interaction/20/False/2/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..d46139604d1052066618c0dfa295a66d6b079325
--- /dev/null
+++ b/therapist-patient-interaction/20/False/2/bn_variables.csv
@@ -0,0 +1,7 @@
+user_action,game_state,attempt,agent_assistance
+0,0,0,0
+2,0,0,1
+0,0,1,2
+0,1,0,0
+0,1,0,1
+0,2,0,0
diff --git a/therapist-patient-interaction/20/False/2/log_gen.csv b/therapist-patient-interaction/20/False/2/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..d14afeb9c9742262ff360369cd727790906d16d9
--- /dev/null
+++ b/therapist-patient-interaction/20/False/2/log_gen.csv
@@ -0,0 +1,6 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
+0.777,1,9.798,12,0,,715,0,0.0,1
+0.0,2,0.0,10,1,,671,0,0.0,2
+0.873,3,9.104,18,0,,667,0,0.0,1
+1.083,4,8.929,13,0,,661,0,0.0,1
+0.967,5,6.581,6,0,,619,0,0.0,1
diff --git a/therapist-patient-interaction/20/False/2/log_params.csv b/therapist-patient-interaction/20/False/2/log_params.csv
new file mode 100644
index 0000000000000000000000000000000000000000..2ab03314ce1b3524c72d715e6dfdba1f8e22afca
--- /dev/null
+++ b/therapist-patient-interaction/20/False/2/log_params.csv
@@ -0,0 +1,2 @@
+with_feedback,objective,session,user_id,timeout
+False,descending_odd,2,20,10
diff --git a/therapist-patient-interaction/20/False/2/log_spec.csv b/therapist-patient-interaction/20/False/2/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..45a75cbbe93b51ba4e132a05f3eda0f0d8ae18d6
--- /dev/null
+++ b/therapist-patient-interaction/20/False/2/log_spec.csv
@@ -0,0 +1,7 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
+0,0,0,0,9.798,0,1,12,0.777,1,0,715
+0,2,0,0,10,0,0,,0,,0,
+0,0,1,0,0.0,0,2,10,0.0,2,0,671
+1,0,0,0,9.104,0,1,18,0.873,3,0,667
+1,0,0,0,8.929,0,1,13,1.083,4,0,661
+2,0,0,0,6.581,0,1,6,0.967,5,0,619
diff --git a/therapist-patient-interaction/20/False/2/log_summary.csv b/therapist-patient-interaction/20/False/2/log_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..b41961ba4f4dd44b77d7f35a38f0e89f46d59170
--- /dev/null
+++ b/therapist-patient-interaction/20/False/2/log_summary.csv
@@ -0,0 +1,2 @@
+tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
+3.6999999999999997,0.0,34.412000000000006,1,6,0
diff --git a/therapist-patient-interaction/20/False/3/bn_variables.csv b/therapist-patient-interaction/20/False/3/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..a42f647c2a347bf6411f4819f0b5c3ac4171026a
--- /dev/null
+++ b/therapist-patient-interaction/20/False/3/bn_variables.csv
@@ -0,0 +1,12 @@
+user_action,game_state,attempt,agent_assistance
+1,0,0,0
+2,0,1,1
+1,0,2,2
+0,0,3,1
+2,0,0,0
+2,0,1,2
+0,0,2,2
+2,1,0,0
+0,1,1,1
+0,1,0,0
+0,2,0,0
diff --git a/therapist-patient-interaction/20/True/1/bn_variables.csv b/therapist-patient-interaction/20/True/1/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..0f64b96ffbacbcdc68e4dfac940de7bf6298aa8c
--- /dev/null
+++ b/therapist-patient-interaction/20/True/1/bn_variables.csv
@@ -0,0 +1,9 @@
+user_action,game_state,attempt,agent_assistance
+0,0,0,0
+0,0,0,1
+1,1,0,0
+0,1,1,1
+1,1,0,0
+2,1,1,1
+0,1,2,2
+0,2,0,0
diff --git a/therapist-patient-interaction/20/True/2/bn_variables.csv b/therapist-patient-interaction/20/True/2/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..5cc93715dc87a6bd15309b1d95d761d33c4e7a14
--- /dev/null
+++ b/therapist-patient-interaction/20/True/2/bn_variables.csv
@@ -0,0 +1,9 @@
+user_action,game_state,attempt,agent_assistance
+0,0,0,0
+0,0,0,0
+1,1,0,0
+0,1,1,1
+1,1,0,0
+2,1,1,1
+0,1,2,2
+0,2,0,0
diff --git a/therapist-patient-interaction/20/True/2/log_gen.csv b/therapist-patient-interaction/20/True/2/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..b70804e41ab3ad236e8a2e802171ba993faa6e39
--- /dev/null
+++ b/therapist-patient-interaction/20/True/2/log_gen.csv
@@ -0,0 +1,6 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
+0.719,1,10.149,16,0,,715,0,0.0,1
+0.695,2,7.193,19,0,,671,0,0.0,1
+1.343,3,17.605,9,0,,667,0,0.0,2
+0.551,4,14.443,6,1,,661,0,0.0,3
+0.727,5,6.909,20,0,,619,0,0.0,1
diff --git a/therapist-patient-interaction/20/True/2/log_params.csv b/therapist-patient-interaction/20/True/2/log_params.csv
new file mode 100644
index 0000000000000000000000000000000000000000..11b4079d692d81aae8f4966e9981f6f313bc07e2
--- /dev/null
+++ b/therapist-patient-interaction/20/True/2/log_params.csv
@@ -0,0 +1,2 @@
+with_feedback,objective,session,user_id,timeout
+True,descending_odd,2,20,15
diff --git a/therapist-patient-interaction/20/True/2/log_spec.csv b/therapist-patient-interaction/20/True/2/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..5cbe292a2bda09b6728770f533cf327c135a24bd
--- /dev/null
+++ b/therapist-patient-interaction/20/True/2/log_spec.csv
@@ -0,0 +1,9 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
+0,0,0,0,10.149,0,0,16,0.719,1,0,715
+0,0,0,0,7.193,0,1,19,0.695,2,0,671
+1,1,0,0,6.702,0,1,3,0.539,20,0,619
+1,0,1,0,10.903,0,0,9,0.805,3,0,667
+1,1,0,0,14.443,0,0,4,0.551,20,0,619
+1,2,1,0,15,0,0,,0,,0,
+1,0,2,0,0.0,0,2,6,0.0,4,0,661
+2,0,0,0,6.909,0,1,20,0.727,5,0,619
diff --git a/therapist-patient-interaction/20/True/2/log_summary.csv b/therapist-patient-interaction/20/True/2/log_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..1719765b478bc241e604ff91726df4a6950a2b1c
--- /dev/null
+++ b/therapist-patient-interaction/20/True/2/log_summary.csv
@@ -0,0 +1,2 @@
+tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
+4.035,0.0,56.299,1,8,0
diff --git a/therapist-patient-interaction/1000/True/1/bn_variables.csv b/therapist-patient-interaction/20/True/3/bn_variables.csv
similarity index 66%
rename from therapist-patient-interaction/1000/True/1/bn_variables.csv
rename to therapist-patient-interaction/20/True/3/bn_variables.csv
index 123cd42d30621b499ebb054863d827fe0e3339df..abc7a30b001e98e2ac6ae83c8d8461e432dd3f64 100644
--- a/therapist-patient-interaction/1000/True/1/bn_variables.csv
+++ b/therapist-patient-interaction/20/True/3/bn_variables.csv
@@ -1,10 +1,10 @@
 user_action,game_state,attempt,agent_assistance
 2,0,0,0
-0,0,1,1
-2,0,0,2
+1,0,1,1
+0,0,2,2
+2,0,0,0
 0,0,1,1
 2,1,0,0
-0,1,1,3
-2,1,0,1
 0,1,1,2
-0,2,0,2
+0,1,0,0
+0,2,0,1
diff --git a/therapist-patient-interaction/20/True/3/log_gen.csv b/therapist-patient-interaction/20/True/3/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..3896008a24301a81044335c1cc116545703cd373
--- /dev/null
+++ b/therapist-patient-interaction/20/True/3/log_gen.csv
@@ -0,0 +1,6 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
+2.262,1,6.995,20,1,,565,0,0.0,3
+0.0,2,0.0,17,1,,499,0,0.0,2
+0.0,3,0.0,11,1,,321,0,0.0,2
+0.5,4,7.182,8,0,,311,0,0.0,1
+0.598,5,7.798,15,0,,177,0,0.0,1
diff --git a/therapist-patient-interaction/20/True/3/log_params.csv b/therapist-patient-interaction/20/True/3/log_params.csv
new file mode 100644
index 0000000000000000000000000000000000000000..5af874d6fa588b7673acdf2d62d35e5b5f69083e
--- /dev/null
+++ b/therapist-patient-interaction/20/True/3/log_params.csv
@@ -0,0 +1,2 @@
+with_feedback,objective,session,user_id,timeout
+True,descending_odd,3,20,10
diff --git a/therapist-patient-interaction/20/True/3/log_spec.csv b/therapist-patient-interaction/20/True/3/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..8956b2732df01a318debcb2db336a0df8e62041f
--- /dev/null
+++ b/therapist-patient-interaction/20/True/3/log_spec.csv
@@ -0,0 +1,10 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
+0,2,0,0,10,0,0,,0,,0,
+0,1,1,0,4.236,0,2,1,1.127,20,1,565
+0,0,2,0,2.76,0,2,20,1.134,1,0,565
+0,2,0,0,10,0,0,,0,,0,
+0,0,1,0,0.0,0,2,17,0.0,2,0,499
+1,2,0,0,10,0,0,,0,,0,
+1,0,1,0,0.0,0,2,11,0.0,3,0,321
+1,0,0,0,7.182,0,1,8,0.5,4,0,311
+2,0,0,0,7.798,0,1,15,0.598,5,0,177
diff --git a/therapist-patient-interaction/20/True/3/log_summary.csv b/therapist-patient-interaction/20/True/3/log_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..3322428f1b7df23d8fedb8cf2f7fa8017496bbb0
--- /dev/null
+++ b/therapist-patient-interaction/20/True/3/log_summary.csv
@@ -0,0 +1,2 @@
+tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
+3.36,0.0,21.975,3,9,0
diff --git a/therapist-patient-interaction/21/False/1/bn_variables.csv b/therapist-patient-interaction/21/False/1/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..04f2b2de5b6df71fd030617fa019447a7c1c3c9f
--- /dev/null
+++ b/therapist-patient-interaction/21/False/1/bn_variables.csv
@@ -0,0 +1,7 @@
+user_action,game_state,attempt,agent_assistance
+2,0,0,0
+0,0,1,2
+0,0,0,0
+0,1,0,1
+0,1,0,0
+0,2,0,0
diff --git a/therapist-patient-interaction/21/False/1/log_gen.csv b/therapist-patient-interaction/21/False/1/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..b6679a36f61875ac833c680fdce7d16ff8c58e02
--- /dev/null
+++ b/therapist-patient-interaction/21/False/1/log_gen.csv
@@ -0,0 +1,6 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
+0.904,1,9.661,13,1,,947,0,0.0,2
+0.776,2,8.601,11,0,,693,0,0.0,1
+0.773,3,8.765,12,0,,537,0,0.0,1
+0.743,4,10.285,17,0,,391,0,0.0,1
+0.894,5,4.343,18,0,,373,0,0.0,1
diff --git a/therapist-patient-interaction/21/False/1/log_params.csv b/therapist-patient-interaction/21/False/1/log_params.csv
new file mode 100644
index 0000000000000000000000000000000000000000..081037e8ddfb9710d2c29b69798621c8d81d3bff
--- /dev/null
+++ b/therapist-patient-interaction/21/False/1/log_params.csv
@@ -0,0 +1,2 @@
+with_feedback,objective,session,user_id,timeout
+True,descending_odd,1,21,15
diff --git a/therapist-patient-interaction/21/False/1/log_spec.csv b/therapist-patient-interaction/21/False/1/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..8cf7fd83f08e7bc32d7c922935b0e2a03836d803
--- /dev/null
+++ b/therapist-patient-interaction/21/False/1/log_spec.csv
@@ -0,0 +1,7 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
+0,2,0,0,15,0,0,,0,,0,
+0,0,1,0,9.661,0,1,13,0.904,1,0,947
+0,0,0,0,8.601,0,1,11,0.776,2,0,693
+1,0,0,0,8.765,0,1,12,0.773,3,0,537
+1,0,0,0,10.285,0,0,17,0.743,4,0,391
+2,0,0,0,4.343,0,2,18,0.894,5,0,373
diff --git a/therapist-patient-interaction/21/False/1/log_summary.csv b/therapist-patient-interaction/21/False/1/log_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..58dc9596b4f3874ee0a29aa758f072c146f84ac1
--- /dev/null
+++ b/therapist-patient-interaction/21/False/1/log_summary.csv
@@ -0,0 +1,2 @@
+tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
+4.09,0.0,41.655,1,6,0
diff --git a/therapist-patient-interaction/21/False/2/bn_variables.csv b/therapist-patient-interaction/21/False/2/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..eb632e9262fcb0f60556163c65cf8675cc11cb88
--- /dev/null
+++ b/therapist-patient-interaction/21/False/2/bn_variables.csv
@@ -0,0 +1,10 @@
+user_action,game_state,attempt,agent_assistance
+2,0,0,0
+2,0,1,1
+0,0,2,2
+0,0,0,0
+0,1,0,0
+0,1,0,1
+2,2,0,0
+1,2,1,1
+0,2,2,2
diff --git a/therapist-patient-interaction/21/False/2/log_gen.csv b/therapist-patient-interaction/21/False/2/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..59b47174770466ec49d2e74d0ee9fd0ab7cc79af
--- /dev/null
+++ b/therapist-patient-interaction/21/False/2/log_gen.csv
@@ -0,0 +1,6 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
+1.155,1,1.558,20,2,,715,0,0.0,3
+0.854,2,9.323,18,0,,671,0,0.0,1
+0.771,3,4.631,10,0,,667,0,0.0,1
+0.613,4,4.656,13,0,,661,0,0.0,1
+0.651,5,4.904,8,1,,619,0,0.0,3
diff --git a/therapist-patient-interaction/21/False/2/log_params.csv b/therapist-patient-interaction/21/False/2/log_params.csv
new file mode 100644
index 0000000000000000000000000000000000000000..1a3f00547ace6958c9f949dacf0ba38c9560187e
--- /dev/null
+++ b/therapist-patient-interaction/21/False/2/log_params.csv
@@ -0,0 +1,2 @@
+with_feedback,objective,session,user_id,timeout
+True,descending_odd,2,21,10
diff --git a/therapist-patient-interaction/21/False/2/log_spec.csv b/therapist-patient-interaction/21/False/2/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..44285a6f4595beb6696e10ce1cc0e4fe4d055f31
--- /dev/null
+++ b/therapist-patient-interaction/21/False/2/log_spec.csv
@@ -0,0 +1,10 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
+0,2,0,0,10,0,0,,0,,0,
+0,2,1,0,10,0,0,,0,,1,
+0,0,2,0,1.558,0,2,20,1.155,1,0,715
+0,0,0,0,9.323,0,1,18,0.854,2,0,671
+1,0,0,0,4.631,0,2,10,0.771,3,0,667
+1,0,0,0,4.656,0,2,13,0.613,4,0,661
+2,2,0,0,10,0,0,,0,,0,
+2,1,1,0,0.0,0,2,16,0.0,16,1,593
+2,0,2,0,4.904,0,2,8,0.651,5,0,619
diff --git a/therapist-patient-interaction/21/False/2/log_summary.csv b/therapist-patient-interaction/21/False/2/log_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..60d3ab434066fa7aa8886728207f020dc339ce42
--- /dev/null
+++ b/therapist-patient-interaction/21/False/2/log_summary.csv
@@ -0,0 +1,2 @@
+tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
+4.044,0.0,25.072,3,9,0
diff --git a/therapist-patient-interaction/21/False/3/bn_variables.csv b/therapist-patient-interaction/21/False/3/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..21791348beaceecdcb9c8be6a91754482a5bf3d7
--- /dev/null
+++ b/therapist-patient-interaction/21/False/3/bn_variables.csv
@@ -0,0 +1,9 @@
+user_action,game_state,attempt,agent_assistance
+2,0,0,0
+0,0,1,1
+0,0,0,0
+0,1,0,0
+0,1,0,1
+2,2,0,0
+1,2,1,1
+0,2,2,2
diff --git a/therapist-patient-interaction/21/True/1/bn_variables.csv b/therapist-patient-interaction/21/True/1/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..04f2b2de5b6df71fd030617fa019447a7c1c3c9f
--- /dev/null
+++ b/therapist-patient-interaction/21/True/1/bn_variables.csv
@@ -0,0 +1,7 @@
+user_action,game_state,attempt,agent_assistance
+2,0,0,0
+0,0,1,2
+0,0,0,0
+0,1,0,1
+0,1,0,0
+0,2,0,0
diff --git a/therapist-patient-interaction/21/True/1/log_gen.csv b/therapist-patient-interaction/21/True/1/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..b6679a36f61875ac833c680fdce7d16ff8c58e02
--- /dev/null
+++ b/therapist-patient-interaction/21/True/1/log_gen.csv
@@ -0,0 +1,6 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
+0.904,1,9.661,13,1,,947,0,0.0,2
+0.776,2,8.601,11,0,,693,0,0.0,1
+0.773,3,8.765,12,0,,537,0,0.0,1
+0.743,4,10.285,17,0,,391,0,0.0,1
+0.894,5,4.343,18,0,,373,0,0.0,1
diff --git a/therapist-patient-interaction/21/True/1/log_params.csv b/therapist-patient-interaction/21/True/1/log_params.csv
new file mode 100644
index 0000000000000000000000000000000000000000..081037e8ddfb9710d2c29b69798621c8d81d3bff
--- /dev/null
+++ b/therapist-patient-interaction/21/True/1/log_params.csv
@@ -0,0 +1,2 @@
+with_feedback,objective,session,user_id,timeout
+True,descending_odd,1,21,15
diff --git a/therapist-patient-interaction/21/True/1/log_spec.csv b/therapist-patient-interaction/21/True/1/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..8cf7fd83f08e7bc32d7c922935b0e2a03836d803
--- /dev/null
+++ b/therapist-patient-interaction/21/True/1/log_spec.csv
@@ -0,0 +1,7 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
+0,2,0,0,15,0,0,,0,,0,
+0,0,1,0,9.661,0,1,13,0.904,1,0,947
+0,0,0,0,8.601,0,1,11,0.776,2,0,693
+1,0,0,0,8.765,0,1,12,0.773,3,0,537
+1,0,0,0,10.285,0,0,17,0.743,4,0,391
+2,0,0,0,4.343,0,2,18,0.894,5,0,373
diff --git a/therapist-patient-interaction/21/True/1/log_summary.csv b/therapist-patient-interaction/21/True/1/log_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..58dc9596b4f3874ee0a29aa758f072c146f84ac1
--- /dev/null
+++ b/therapist-patient-interaction/21/True/1/log_summary.csv
@@ -0,0 +1,2 @@
+tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
+4.09,0.0,41.655,1,6,0
diff --git a/therapist-patient-interaction/21/True/2/bn_variables.csv b/therapist-patient-interaction/21/True/2/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..eb632e9262fcb0f60556163c65cf8675cc11cb88
--- /dev/null
+++ b/therapist-patient-interaction/21/True/2/bn_variables.csv
@@ -0,0 +1,10 @@
+user_action,game_state,attempt,agent_assistance
+2,0,0,0
+2,0,1,1
+0,0,2,2
+0,0,0,0
+0,1,0,0
+0,1,0,1
+2,2,0,0
+1,2,1,1
+0,2,2,2
diff --git a/therapist-patient-interaction/21/True/2/log_gen.csv b/therapist-patient-interaction/21/True/2/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..59b47174770466ec49d2e74d0ee9fd0ab7cc79af
--- /dev/null
+++ b/therapist-patient-interaction/21/True/2/log_gen.csv
@@ -0,0 +1,6 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
+1.155,1,1.558,20,2,,715,0,0.0,3
+0.854,2,9.323,18,0,,671,0,0.0,1
+0.771,3,4.631,10,0,,667,0,0.0,1
+0.613,4,4.656,13,0,,661,0,0.0,1
+0.651,5,4.904,8,1,,619,0,0.0,3
diff --git a/therapist-patient-interaction/21/True/2/log_params.csv b/therapist-patient-interaction/21/True/2/log_params.csv
new file mode 100644
index 0000000000000000000000000000000000000000..1a3f00547ace6958c9f949dacf0ba38c9560187e
--- /dev/null
+++ b/therapist-patient-interaction/21/True/2/log_params.csv
@@ -0,0 +1,2 @@
+with_feedback,objective,session,user_id,timeout
+True,descending_odd,2,21,10
diff --git a/therapist-patient-interaction/21/True/2/log_spec.csv b/therapist-patient-interaction/21/True/2/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..44285a6f4595beb6696e10ce1cc0e4fe4d055f31
--- /dev/null
+++ b/therapist-patient-interaction/21/True/2/log_spec.csv
@@ -0,0 +1,10 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
+0,2,0,0,10,0,0,,0,,0,
+0,2,1,0,10,0,0,,0,,1,
+0,0,2,0,1.558,0,2,20,1.155,1,0,715
+0,0,0,0,9.323,0,1,18,0.854,2,0,671
+1,0,0,0,4.631,0,2,10,0.771,3,0,667
+1,0,0,0,4.656,0,2,13,0.613,4,0,661
+2,2,0,0,10,0,0,,0,,0,
+2,1,1,0,0.0,0,2,16,0.0,16,1,593
+2,0,2,0,4.904,0,2,8,0.651,5,0,619
diff --git a/therapist-patient-interaction/21/True/2/log_summary.csv b/therapist-patient-interaction/21/True/2/log_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..60d3ab434066fa7aa8886728207f020dc339ce42
--- /dev/null
+++ b/therapist-patient-interaction/21/True/2/log_summary.csv
@@ -0,0 +1,2 @@
+tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
+4.044,0.0,25.072,3,9,0
diff --git a/therapist-patient-interaction/21/True/3/bn_variables.csv b/therapist-patient-interaction/21/True/3/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..21791348beaceecdcb9c8be6a91754482a5bf3d7
--- /dev/null
+++ b/therapist-patient-interaction/21/True/3/bn_variables.csv
@@ -0,0 +1,9 @@
+user_action,game_state,attempt,agent_assistance
+2,0,0,0
+0,0,1,1
+0,0,0,0
+0,1,0,0
+0,1,0,1
+2,2,0,0
+1,2,1,1
+0,2,2,2
diff --git a/therapist-patient-interaction/1000/True/3/bn_variables.csv b/therapist-patient-interaction/22/False/1/bn_variables.csv
similarity index 62%
rename from therapist-patient-interaction/1000/True/3/bn_variables.csv
rename to therapist-patient-interaction/22/False/1/bn_variables.csv
index 71a3758d2e3171f8445e6f098d70060d0e6817cd..533a4367259c6b5d5b35ef2b22e27ed7578758e2 100644
--- a/therapist-patient-interaction/1000/True/3/bn_variables.csv
+++ b/therapist-patient-interaction/22/False/1/bn_variables.csv
@@ -1,9 +1,11 @@
 user_action,game_state,attempt,agent_assistance
-0,0,0,0
-0,0,0,1
-2,1,0,0
+1,0,0,0
+0,0,1,1
+1,0,0,0
 0,1,1,2
 1,1,0,1
-0,1,1,3
-1,2,0,1
+0,1,1,2
+2,1,0,0
+0,1,1,1
+1,2,0,0
 0,2,1,2
diff --git a/therapist-patient-interaction/22/False/2/bn_variables.csv b/therapist-patient-interaction/22/False/2/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..e8928d6ef3a6a9d1d5ca75bb3ec7c200aeb485a3
--- /dev/null
+++ b/therapist-patient-interaction/22/False/2/bn_variables.csv
@@ -0,0 +1,6 @@
+user_action,game_state,attempt,agent_assistance
+0,0,0,0
+0,0,0,1
+0,1,0,1
+0,1,0,0
+0,2,0,1
diff --git a/therapist-patient-interaction/22/False/3/bn_variables.csv b/therapist-patient-interaction/22/False/3/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..41663c8a1df81b1248b610555e2dd2810ac422f8
--- /dev/null
+++ b/therapist-patient-interaction/22/False/3/bn_variables.csv
@@ -0,0 +1,10 @@
+user_action,game_state,attempt,agent_assistance
+2,0,0,0
+2,0,1,1
+0,0,2,2
+2,0,0,0
+0,0,1,2
+0,1,0,0
+1,1,0,0
+0,1,1,3
+0,2,0,0
diff --git a/therapist-patient-interaction/22/True/1/bn_variables.csv b/therapist-patient-interaction/22/True/1/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..aa859e263a5c767f36f5b7785f942840b16d4b70
--- /dev/null
+++ b/therapist-patient-interaction/22/True/1/bn_variables.csv
@@ -0,0 +1,8 @@
+user_action,game_state,attempt,agent_assistance
+1,0,0,0
+0,0,1,1
+0,0,0,0
+0,1,0,1
+1,1,0,0
+0,1,1,2
+0,2,0,0
diff --git a/therapist-patient-interaction/22/True/1/log_gen.csv b/therapist-patient-interaction/22/True/1/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..211684e7093309c7b81cbe41f7a75f762fcc9d91
--- /dev/null
+++ b/therapist-patient-interaction/22/True/1/log_gen.csv
@@ -0,0 +1,6 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
+3.238,1,24.606,17,0,,947,0,0.0,2
+0.864,2,13.113,18,0,,693,0,0.0,1
+0.786,3,7.93,10,0,,537,0,0.0,1
+1.069,4,24.085,14,0,,391,0,0.0,2
+0.622,5,1.994,12,0,,373,0,0.0,1
diff --git a/therapist-patient-interaction/22/True/1/log_params.csv b/therapist-patient-interaction/22/True/1/log_params.csv
new file mode 100644
index 0000000000000000000000000000000000000000..537bccb4778da607b395378cbadad87e6e76ba83
--- /dev/null
+++ b/therapist-patient-interaction/22/True/1/log_params.csv
@@ -0,0 +1,2 @@
+with_feedback,objective,session,user_id,timeout
+True,descending_odd,1,22,15
diff --git a/therapist-patient-interaction/22/True/1/log_spec.csv b/therapist-patient-interaction/22/True/1/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..c72ff69aa723b9036b30a09986867ae97efb5a69
--- /dev/null
+++ b/therapist-patient-interaction/22/True/1/log_spec.csv
@@ -0,0 +1,8 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
+0,1,0,0,14.355,0,0,11,2.063,11,0,135
+0,0,1,0,10.251,0,0,17,1.175,1,0,947
+0,0,0,0,13.113,0,0,18,0.864,2,0,693
+1,0,0,0,7.93,0,1,10,0.786,3,0,537
+1,1,0,0,14.373,0,0,4,0.467,12,0,373
+1,0,1,0,9.711,0,1,14,0.602,4,0,391
+2,0,0,0,1.994,0,2,12,0.622,5,0,373
diff --git a/therapist-patient-interaction/22/True/1/log_summary.csv b/therapist-patient-interaction/22/True/1/log_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..70a07adc80fa4993808739a279a802ccb6e7c7b0
--- /dev/null
+++ b/therapist-patient-interaction/22/True/1/log_summary.csv
@@ -0,0 +1,2 @@
+tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
+6.579,0.0,71.72800000000001,0,7,0
diff --git a/therapist-patient-interaction/22/True/2/bn_variables.csv b/therapist-patient-interaction/22/True/2/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..2cded5b651e2dd017d8789a81fea24de3ba42913
--- /dev/null
+++ b/therapist-patient-interaction/22/True/2/bn_variables.csv
@@ -0,0 +1,7 @@
+user_action,game_state,attempt,agent_assistance
+2,0,0,0
+0,0,1,2
+0,0,0,0
+0,1,0,0
+0,1,0,1
+0,2,0,0
diff --git a/therapist-patient-interaction/22/True/2/log_gen.csv b/therapist-patient-interaction/22/True/2/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..fb6600afe25b975d35b0dae05c39aa9c192e5838
--- /dev/null
+++ b/therapist-patient-interaction/22/True/2/log_gen.csv
@@ -0,0 +1,6 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
+0.752,1,0.759,13,1,,715,0,0.0,2
+0.886,2,9.801,16,0,,671,0,0.0,1
+0.497,3,2.126,8,0,,667,0,0.0,1
+0.668,4,2.454,7,0,,661,0,0.0,1
+2.072,5,5.079,6,0,,619,0,0.0,1
diff --git a/therapist-patient-interaction/22/True/2/log_params.csv b/therapist-patient-interaction/22/True/2/log_params.csv
new file mode 100644
index 0000000000000000000000000000000000000000..cf46a27d7ee8496f32bae4163b6a208a0385a635
--- /dev/null
+++ b/therapist-patient-interaction/22/True/2/log_params.csv
@@ -0,0 +1,2 @@
+with_feedback,objective,session,user_id,timeout
+True,descending_odd,2,22,15
diff --git a/therapist-patient-interaction/22/True/2/log_spec.csv b/therapist-patient-interaction/22/True/2/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..ed460ccc003fe6f63e1621decdc47ee3589f9772
--- /dev/null
+++ b/therapist-patient-interaction/22/True/2/log_spec.csv
@@ -0,0 +1,7 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
+0,2,0,0,15,0,0,,0,,0,
+0,0,1,0,0.759,0,2,13,0.752,1,0,715
+0,0,0,0,9.801,0,1,16,0.886,2,0,671
+1,0,0,0,2.126,0,2,8,0.497,3,0,667
+1,0,0,0,2.454,0,2,7,0.668,4,0,661
+2,0,0,0,5.079,0,1,6,2.072,5,0,619
diff --git a/therapist-patient-interaction/22/True/2/log_summary.csv b/therapist-patient-interaction/22/True/2/log_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..1014248d008549be12b22ab03daf06499d16a841
--- /dev/null
+++ b/therapist-patient-interaction/22/True/2/log_summary.csv
@@ -0,0 +1,2 @@
+tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
+4.875,0.0,20.219,1,6,0
diff --git a/therapist-patient-interaction/22/True/3/bn_variables.csv b/therapist-patient-interaction/22/True/3/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..e5d284dbed1414df7d22772f144951d32000e2a1
--- /dev/null
+++ b/therapist-patient-interaction/22/True/3/bn_variables.csv
@@ -0,0 +1,12 @@
+user_action,game_state,attempt,agent_assistance
+2,0,0,0
+1,0,1,1
+2,0,2,2
+0,0,0,0
+2,0,1,1
+0,0,2,2
+2,1,0,0
+0,1,1,1
+1,1,0,0
+0,2,1,1
+0,2,1,0
diff --git a/therapist-patient-interaction/23/False/1/bn_variables.csv b/therapist-patient-interaction/23/False/1/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9177ec447561ebdeeb3b7c14744fa56bdfb78b34
--- /dev/null
+++ b/therapist-patient-interaction/23/False/1/bn_variables.csv
@@ -0,0 +1,15 @@
+user_action,game_state,attempt,agent_assistance
+2,0,0,0
+0,0,1,1
+1,0,0,0
+2,0,1,1
+0,0,2,2
+2,1,0,0
+0,1,1,1
+2,1,0,0
+1,1,1,1
+0,1,2,2
+1,2,0,0
+2,2,1,2
+1,2,2,3
+2,2,3,4
diff --git a/therapist-patient-interaction/23/False/1/log_gen.csv b/therapist-patient-interaction/23/False/1/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..1b194efcc03f1543cdef9a08827dfccd5d3c04cd
--- /dev/null
+++ b/therapist-patient-interaction/23/False/1/log_gen.csv
@@ -0,0 +1,6 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
+0.953,1,13.714,9,1,,698,0,0.0,2
+1.088,2,12.49,15,1,,894,0,0.0,3
+1.671,3,0.657,16,1,,947,0,0.0,2
+1.287,4,5.922,20,1,,289,0,0.0,3
+2.321,5,17.523,8,1,,693,0,0.0,4
diff --git a/therapist-patient-interaction/23/False/1/log_params.csv b/therapist-patient-interaction/23/False/1/log_params.csv
new file mode 100644
index 0000000000000000000000000000000000000000..42057b75f4a7b1329726b3339e0735f29dd397f8
--- /dev/null
+++ b/therapist-patient-interaction/23/False/1/log_params.csv
@@ -0,0 +1,2 @@
+with_feedback,objective,session,user_id,timeout
+False,descending_odd,1,23,15
diff --git a/therapist-patient-interaction/23/False/1/log_spec.csv b/therapist-patient-interaction/23/False/1/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..1953608c3854364e0b45419ac1dc0b8ab3ce200a
--- /dev/null
+++ b/therapist-patient-interaction/23/False/1/log_spec.csv
@@ -0,0 +1,15 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
+0,2,0,0,15,0,0,,0,,0,
+0,0,1,0,13.714,0,0,9,0.953,1,0,698
+0,1,0,0,7.406,0,1,2,0.349,8,0,693
+0,2,1,0,15,0,0,,0,,0,
+0,0,2,0,5.083,0,1,15,0.739,2,0,894
+1,2,0,0,15,0,0,,0,,0,
+1,0,1,0,0.657,0,2,16,1.671,3,0,947
+1,2,0,0,15,0,0,,0,,0,
+1,1,1,0,3.317,0,2,4,0.726,19,1,872
+1,0,2,0,2.605,0,2,20,0.561,4,0,289
+2,1,0,0,3.202,0,2,5,0.721,19,0,872
+2,2,1,0,15,0,0,,0,,0,
+2,1,2,0,14.321,0,0,5,1.6,6,1,125
+2,2,3,0,15,0,0,,0,,0,
diff --git a/therapist-patient-interaction/23/False/1/log_summary.csv b/therapist-patient-interaction/23/False/1/log_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..dff6d07b8fb3457ca79f39cc32cd71af4d8830e4
--- /dev/null
+++ b/therapist-patient-interaction/23/False/1/log_summary.csv
@@ -0,0 +1,2 @@
+tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
+7.32,0.0,50.306,5,14,0
diff --git a/therapist-patient-interaction/23/False/2/bn_variables.csv b/therapist-patient-interaction/23/False/2/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..1d0e5322daac8c96e43fa805276996161529f956
--- /dev/null
+++ b/therapist-patient-interaction/23/False/2/bn_variables.csv
@@ -0,0 +1,11 @@
+user_action,game_state,attempt,agent_assistance
+2,0,0,0
+0,0,1,1
+1,0,0,0
+2,0,1,2
+0,0,2,3
+2,1,0,0
+0,1,1,3
+2,1,0,0
+0,1,1,0
+0,2,0,0
diff --git a/therapist-patient-interaction/23/False/2/log_gen.csv b/therapist-patient-interaction/23/False/2/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..5ec6484354510cb0e93eec76796f69efab1f10ed
--- /dev/null
+++ b/therapist-patient-interaction/23/False/2/log_gen.csv
@@ -0,0 +1,3 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
+0.875,1,5.248,16,1,,587,0,0.0,2
+1.95,2,23.477,8,1,,667,0,0.0,3
diff --git a/therapist-patient-interaction/23/False/2/log_params.csv b/therapist-patient-interaction/23/False/2/log_params.csv
new file mode 100644
index 0000000000000000000000000000000000000000..332f26b2c8721e16d6d91e1b2e43f7de1d62c75f
--- /dev/null
+++ b/therapist-patient-interaction/23/False/2/log_params.csv
@@ -0,0 +1,2 @@
+with_feedback,objective,session,user_id,timeout
+False,descending_odd,2,23,15
diff --git a/therapist-patient-interaction/23/False/2/log_spec.csv b/therapist-patient-interaction/23/False/2/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..73a46e4bea5220b1ef47d4a93209ad3822e6c652
--- /dev/null
+++ b/therapist-patient-interaction/23/False/2/log_spec.csv
@@ -0,0 +1,6 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
+0,2,0,0,15,0,0,,0,,0,
+0,0,1,0,5.248,0,1,16,0.875,1,0,587
+0,1,0,0,11.681,0,0,2,1.293,6,0,593
+0,2,1,0,15,0,0,,0,,0,
+0,0,2,0,11.796,0,0,8,0.657,2,0,667
diff --git a/therapist-patient-interaction/1000/True/1/log_summary.csv b/therapist-patient-interaction/23/False/2/log_summary.csv
similarity index 100%
rename from therapist-patient-interaction/1000/True/1/log_summary.csv
rename to therapist-patient-interaction/23/False/2/log_summary.csv
diff --git a/therapist-patient-interaction/23/False/3/bn_variables.csv b/therapist-patient-interaction/23/False/3/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..197cbc0922d1459d1f3c0e5846e7d63eabc5f2d5
--- /dev/null
+++ b/therapist-patient-interaction/23/False/3/bn_variables.csv
@@ -0,0 +1,11 @@
+user_action,game_state,attempt,agent_assistance
+0,0,0,0
+2,0,0,0
+0,0,1,2
+1,1,0,0
+2,1,1,2
+0,1,2,3
+1,1,0,0
+0,1,1,1
+2,2,0,0
+0,2,0,0
diff --git a/therapist-patient-interaction/1000/True/1/log_gen.csv b/therapist-patient-interaction/23/False/3/log_gen.csv
similarity index 100%
rename from therapist-patient-interaction/1000/True/1/log_gen.csv
rename to therapist-patient-interaction/23/False/3/log_gen.csv
diff --git a/therapist-patient-interaction/23/False/3/log_params.csv b/therapist-patient-interaction/23/False/3/log_params.csv
new file mode 100644
index 0000000000000000000000000000000000000000..221a2f24649df498aea5de29a02df8c18ee1e000
--- /dev/null
+++ b/therapist-patient-interaction/23/False/3/log_params.csv
@@ -0,0 +1,2 @@
+with_feedback,objective,session,user_id,timeout
+False,descending_odd,3,23,15
diff --git a/therapist-patient-interaction/1000/True/1/log_spec.csv b/therapist-patient-interaction/23/False/3/log_spec.csv
similarity index 85%
rename from therapist-patient-interaction/1000/True/1/log_spec.csv
rename to therapist-patient-interaction/23/False/3/log_spec.csv
index 8e5a12d6c6c58336421c1a4b7ac4f9cc2496472c..e04843d7a0ce7dbfcca6bbbbbf4e43ee46db7da1 100644
--- a/therapist-patient-interaction/1000/True/1/log_spec.csv
+++ b/therapist-patient-interaction/23/False/3/log_spec.csv
@@ -1,2 +1 @@
 game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
-0,2,0,0,15,0,0,,0,,0,
diff --git a/therapist-patient-interaction/1000/True/3/log_summary.csv b/therapist-patient-interaction/23/False/3/log_summary.csv
similarity index 80%
rename from therapist-patient-interaction/1000/True/3/log_summary.csv
rename to therapist-patient-interaction/23/False/3/log_summary.csv
index 734ee4b00ccc0861e2b4a37b9545f1a405c48bdf..72d795f65de4248d2f92b866891d8fe2826a7baf 100644
--- a/therapist-patient-interaction/1000/True/3/log_summary.csv
+++ b/therapist-patient-interaction/23/False/3/log_summary.csv
@@ -1,2 +1 @@
 tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
-0.0,0.0,0.0,3,8,0
diff --git a/therapist-patient-interaction/23/True/1/bn_variables.csv b/therapist-patient-interaction/23/True/1/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..9177ec447561ebdeeb3b7c14744fa56bdfb78b34
--- /dev/null
+++ b/therapist-patient-interaction/23/True/1/bn_variables.csv
@@ -0,0 +1,15 @@
+user_action,game_state,attempt,agent_assistance
+2,0,0,0
+0,0,1,1
+1,0,0,0
+2,0,1,1
+0,0,2,2
+2,1,0,0
+0,1,1,1
+2,1,0,0
+1,1,1,1
+0,1,2,2
+1,2,0,0
+2,2,1,2
+1,2,2,3
+2,2,3,4
diff --git a/therapist-patient-interaction/23/True/1/log_gen.csv b/therapist-patient-interaction/23/True/1/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..1b194efcc03f1543cdef9a08827dfccd5d3c04cd
--- /dev/null
+++ b/therapist-patient-interaction/23/True/1/log_gen.csv
@@ -0,0 +1,6 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
+0.953,1,13.714,9,1,,698,0,0.0,2
+1.088,2,12.49,15,1,,894,0,0.0,3
+1.671,3,0.657,16,1,,947,0,0.0,2
+1.287,4,5.922,20,1,,289,0,0.0,3
+2.321,5,17.523,8,1,,693,0,0.0,4
diff --git a/therapist-patient-interaction/23/True/1/log_params.csv b/therapist-patient-interaction/23/True/1/log_params.csv
new file mode 100644
index 0000000000000000000000000000000000000000..42057b75f4a7b1329726b3339e0735f29dd397f8
--- /dev/null
+++ b/therapist-patient-interaction/23/True/1/log_params.csv
@@ -0,0 +1,2 @@
+with_feedback,objective,session,user_id,timeout
+False,descending_odd,1,23,15
diff --git a/therapist-patient-interaction/23/True/1/log_spec.csv b/therapist-patient-interaction/23/True/1/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..1953608c3854364e0b45419ac1dc0b8ab3ce200a
--- /dev/null
+++ b/therapist-patient-interaction/23/True/1/log_spec.csv
@@ -0,0 +1,15 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
+0,2,0,0,15,0,0,,0,,0,
+0,0,1,0,13.714,0,0,9,0.953,1,0,698
+0,1,0,0,7.406,0,1,2,0.349,8,0,693
+0,2,1,0,15,0,0,,0,,0,
+0,0,2,0,5.083,0,1,15,0.739,2,0,894
+1,2,0,0,15,0,0,,0,,0,
+1,0,1,0,0.657,0,2,16,1.671,3,0,947
+1,2,0,0,15,0,0,,0,,0,
+1,1,1,0,3.317,0,2,4,0.726,19,1,872
+1,0,2,0,2.605,0,2,20,0.561,4,0,289
+2,1,0,0,3.202,0,2,5,0.721,19,0,872
+2,2,1,0,15,0,0,,0,,0,
+2,1,2,0,14.321,0,0,5,1.6,6,1,125
+2,2,3,0,15,0,0,,0,,0,
diff --git a/therapist-patient-interaction/23/True/1/log_summary.csv b/therapist-patient-interaction/23/True/1/log_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..dff6d07b8fb3457ca79f39cc32cd71af4d8830e4
--- /dev/null
+++ b/therapist-patient-interaction/23/True/1/log_summary.csv
@@ -0,0 +1,2 @@
+tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
+7.32,0.0,50.306,5,14,0
diff --git a/therapist-patient-interaction/23/True/2/bn_variables.csv b/therapist-patient-interaction/23/True/2/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..1d0e5322daac8c96e43fa805276996161529f956
--- /dev/null
+++ b/therapist-patient-interaction/23/True/2/bn_variables.csv
@@ -0,0 +1,11 @@
+user_action,game_state,attempt,agent_assistance
+2,0,0,0
+0,0,1,1
+1,0,0,0
+2,0,1,2
+0,0,2,3
+2,1,0,0
+0,1,1,3
+2,1,0,0
+0,1,1,0
+0,2,0,0
diff --git a/therapist-patient-interaction/23/True/2/log_gen.csv b/therapist-patient-interaction/23/True/2/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..5ec6484354510cb0e93eec76796f69efab1f10ed
--- /dev/null
+++ b/therapist-patient-interaction/23/True/2/log_gen.csv
@@ -0,0 +1,3 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
+0.875,1,5.248,16,1,,587,0,0.0,2
+1.95,2,23.477,8,1,,667,0,0.0,3
diff --git a/therapist-patient-interaction/23/True/2/log_params.csv b/therapist-patient-interaction/23/True/2/log_params.csv
new file mode 100644
index 0000000000000000000000000000000000000000..332f26b2c8721e16d6d91e1b2e43f7de1d62c75f
--- /dev/null
+++ b/therapist-patient-interaction/23/True/2/log_params.csv
@@ -0,0 +1,2 @@
+with_feedback,objective,session,user_id,timeout
+False,descending_odd,2,23,15
diff --git a/therapist-patient-interaction/23/True/2/log_spec.csv b/therapist-patient-interaction/23/True/2/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..73a46e4bea5220b1ef47d4a93209ad3822e6c652
--- /dev/null
+++ b/therapist-patient-interaction/23/True/2/log_spec.csv
@@ -0,0 +1,6 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
+0,2,0,0,15,0,0,,0,,0,
+0,0,1,0,5.248,0,1,16,0.875,1,0,587
+0,1,0,0,11.681,0,0,2,1.293,6,0,593
+0,2,1,0,15,0,0,,0,,0,
+0,0,2,0,11.796,0,0,8,0.657,2,0,667
diff --git a/therapist-patient-interaction/23/True/2/log_summary.csv b/therapist-patient-interaction/23/True/2/log_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..72d795f65de4248d2f92b866891d8fe2826a7baf
--- /dev/null
+++ b/therapist-patient-interaction/23/True/2/log_summary.csv
@@ -0,0 +1 @@
+tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
diff --git a/therapist-patient-interaction/23/True/3/bn_variables.csv b/therapist-patient-interaction/23/True/3/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..197cbc0922d1459d1f3c0e5846e7d63eabc5f2d5
--- /dev/null
+++ b/therapist-patient-interaction/23/True/3/bn_variables.csv
@@ -0,0 +1,11 @@
+user_action,game_state,attempt,agent_assistance
+0,0,0,0
+2,0,0,0
+0,0,1,2
+1,1,0,0
+2,1,1,2
+0,1,2,3
+1,1,0,0
+0,1,1,1
+2,2,0,0
+0,2,0,0
diff --git a/therapist-patient-interaction/23/True/3/log_gen.csv b/therapist-patient-interaction/23/True/3/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..95898a26d3980f7a1405e710e8daf32355439d32
--- /dev/null
+++ b/therapist-patient-interaction/23/True/3/log_gen.csv
@@ -0,0 +1 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
diff --git a/therapist-patient-interaction/23/True/3/log_params.csv b/therapist-patient-interaction/23/True/3/log_params.csv
new file mode 100644
index 0000000000000000000000000000000000000000..221a2f24649df498aea5de29a02df8c18ee1e000
--- /dev/null
+++ b/therapist-patient-interaction/23/True/3/log_params.csv
@@ -0,0 +1,2 @@
+with_feedback,objective,session,user_id,timeout
+False,descending_odd,3,23,15
diff --git a/therapist-patient-interaction/23/True/3/log_spec.csv b/therapist-patient-interaction/23/True/3/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..e04843d7a0ce7dbfcca6bbbbbf4e43ee46db7da1
--- /dev/null
+++ b/therapist-patient-interaction/23/True/3/log_spec.csv
@@ -0,0 +1 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
diff --git a/therapist-patient-interaction/23/True/3/log_summary.csv b/therapist-patient-interaction/23/True/3/log_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..72d795f65de4248d2f92b866891d8fe2826a7baf
--- /dev/null
+++ b/therapist-patient-interaction/23/True/3/log_summary.csv
@@ -0,0 +1 @@
+tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
diff --git a/therapist-patient-interaction/24/False/1/bn_variables.csv b/therapist-patient-interaction/24/False/1/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..53b0e51801f96c222a9a445109920554a801985f
--- /dev/null
+++ b/therapist-patient-interaction/24/False/1/bn_variables.csv
@@ -0,0 +1,9 @@
+user_action,game_state,attempt,agent_assistance
+1,0,0,0
+0,0,1,1
+0,0,0,0
+0,1,0,0
+0,1,0,0
+2,2,0,0
+1,2,1,2
+0,2,2,3
diff --git a/therapist-patient-interaction/24/False/1/log_gen.csv b/therapist-patient-interaction/24/False/1/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f976c7bae50bf0d2b20baacaa8fd6faa9c3e8b42
--- /dev/null
+++ b/therapist-patient-interaction/24/False/1/log_gen.csv
@@ -0,0 +1,6 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
+2.12,1,19.699,19,0,,947,0,0.0,2
+0.78,2,4.473,10,0,,906,0,0.0,1
+0.864,3,7.504,18,0,,894,0,0.0,1
+0.74,4,2.528,15,0,,872,0,0.0,1
+0.827,5,3.308,6,1,,698,0,0.0,3
diff --git a/therapist-patient-interaction/1000/True/1/log_params.csv b/therapist-patient-interaction/24/False/1/log_params.csv
similarity index 62%
rename from therapist-patient-interaction/1000/True/1/log_params.csv
rename to therapist-patient-interaction/24/False/1/log_params.csv
index acad1a9fd3d36173971763deb5c9432fd0f94e32..fe1f34c8ec8f4e6cf221f660c3b9cd5e7665ec57 100644
--- a/therapist-patient-interaction/1000/True/1/log_params.csv
+++ b/therapist-patient-interaction/24/False/1/log_params.csv
@@ -1,2 +1,2 @@
 with_feedback,objective,session,user_id,timeout
-True,descending_odd,1,1,15
+False,descending,1,24,15
diff --git a/therapist-patient-interaction/24/False/1/log_spec.csv b/therapist-patient-interaction/24/False/1/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..779515b85fae5f3c032129e39c8786775c3d305c
--- /dev/null
+++ b/therapist-patient-interaction/24/False/1/log_spec.csv
@@ -0,0 +1,9 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
+0,1,0,0,12.069,0,0,1,1.125,10,0,906
+0,0,1,0,7.63,0,1,19,0.995,1,0,947
+0,0,0,0,4.473,0,2,10,0.78,2,0,906
+1,0,0,0,7.504,0,1,18,0.864,3,0,894
+1,0,0,0,2.528,0,2,15,0.74,4,0,872
+2,2,0,0,15,0,0,,0,,0,
+2,1,1,0,0.0,0,2,5,0.0,20,1,693
+2,0,2,0,3.308,0,2,6,0.827,5,0,698
diff --git a/therapist-patient-interaction/24/False/1/log_summary.csv b/therapist-patient-interaction/24/False/1/log_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..c374b96f722f230797d56585b583f37fe437c339
--- /dev/null
+++ b/therapist-patient-interaction/24/False/1/log_summary.csv
@@ -0,0 +1,2 @@
+tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
+5.331,0.0,37.512,1,8,0
diff --git a/therapist-patient-interaction/24/False/2/bn_variables.csv b/therapist-patient-interaction/24/False/2/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..55af4980ec0cabcca4025046ce649de8bf563778
--- /dev/null
+++ b/therapist-patient-interaction/24/False/2/bn_variables.csv
@@ -0,0 +1,15 @@
+user_action,game_state,attempt,agent_assistance
+1,0,0,0
+1,0,1,0
+1,0,2,2
+0,0,3,3
+2,0,0,0
+1,0,1,2
+0,0,2,3
+1,1,0,0
+0,1,1,1
+0,1,0,0
+1,2,0,0
+1,2,1,2
+1,2,2,3
+0,2,3,4
diff --git a/therapist-patient-interaction/24/False/2/log_gen.csv b/therapist-patient-interaction/24/False/2/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..6a1a0fc5953b9c64b3581f2cf5f2884c9cac0d2e
--- /dev/null
+++ b/therapist-patient-interaction/24/False/2/log_gen.csv
@@ -0,0 +1,6 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
+5.931,1,28.888,8,0,,913,0,0.0,4
+0.644,2,0.81,10,1,,753,0,0.0,3
+1.737,3,14.837,14,0,,732,0,0.0,2
+0.927,4,13.056,13,0,,715,0,0.0,1
+5.096,5,18.191,7,0,,710,0,0.0,4
diff --git a/therapist-patient-interaction/1000/True/2/log_params.csv b/therapist-patient-interaction/24/False/2/log_params.csv
similarity index 62%
rename from therapist-patient-interaction/1000/True/2/log_params.csv
rename to therapist-patient-interaction/24/False/2/log_params.csv
index 0b6a7cfe286ce3cd61457f2e000a2922b0b26180..fa1c105dd1f2e819ca8d1cf385cb1a8531b73636 100644
--- a/therapist-patient-interaction/1000/True/2/log_params.csv
+++ b/therapist-patient-interaction/24/False/2/log_params.csv
@@ -1,2 +1,2 @@
 with_feedback,objective,session,user_id,timeout
-True,descending_odd,2,1,15
+False,descending,2,24,15
diff --git a/therapist-patient-interaction/24/False/2/log_spec.csv b/therapist-patient-interaction/24/False/2/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..fd40d3664e4744a017502c98c466c05fbaad983b
--- /dev/null
+++ b/therapist-patient-interaction/24/False/2/log_spec.csv
@@ -0,0 +1,15 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
+0,1,0,0,7.62,0,1,1,1.827,13,0,715
+0,1,1,0,13.695,0,0,16,2.517,16,0,671
+0,1,2,0,5.164,0,1,1,0.779,10,0,753
+0,0,3,0,2.41,0,2,8,0.808,1,0,913
+0,2,0,0,15,0,0,,0,,0,
+0,1,1,0,0.0,0,2,10,0.0,10,1,753
+0,0,2,0,0.809,0,2,10,0.644,2,0,753
+1,1,0,0,6.744,0,1,3,1.126,7,0,710
+1,0,1,0,8.093,0,1,14,0.611,3,0,732
+1,0,0,0,13.056,0,0,13,0.927,4,0,715
+2,1,0,0,7.123,0,1,5,2.306,16,0,671
+2,1,1,0,7.419,0,1,5,1.187,20,0,667
+2,1,2,0,1.676,0,2,5,0.968,6,0,661
+2,0,3,0,1.972,0,2,7,0.635,5,0,710
diff --git a/therapist-patient-interaction/24/False/2/log_summary.csv b/therapist-patient-interaction/24/False/2/log_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..7a8f7af1cb5fa50458126fe63f4a374b21982e6b
--- /dev/null
+++ b/therapist-patient-interaction/24/False/2/log_summary.csv
@@ -0,0 +1,2 @@
+tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
+14.335,0.0,75.782,1,14,0
diff --git a/therapist-patient-interaction/24/False/3/bn_variables.csv b/therapist-patient-interaction/24/False/3/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..95026d59d5f97eb7ec7eb0834d8093a6249e9abc
--- /dev/null
+++ b/therapist-patient-interaction/24/False/3/bn_variables.csv
@@ -0,0 +1,6 @@
+user_action,game_state,attempt,agent_assistance
+0,0,0,0
+0,0,0,0
+0,1,0,0
+0,1,0,0
+0,2,0,0
diff --git a/therapist-patient-interaction/24/False/3/log_gen.csv b/therapist-patient-interaction/24/False/3/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..cbb232e4baa41d292d514029fe9ecfc065f68c15
--- /dev/null
+++ b/therapist-patient-interaction/24/False/3/log_gen.csv
@@ -0,0 +1,3 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
+0.969,1,12.048,7,0,,939,0,0.0,1
+0.758,2,7.797,14,0,,934,0,0.0,1
diff --git a/therapist-patient-interaction/1000/True/3/log_params.csv b/therapist-patient-interaction/24/False/3/log_params.csv
similarity index 62%
rename from therapist-patient-interaction/1000/True/3/log_params.csv
rename to therapist-patient-interaction/24/False/3/log_params.csv
index a33c192a21363cfd9fa8914a60c1ec64b0782ac0..4f996274d282ecbea08fc4d0d064e1dade90b30a 100644
--- a/therapist-patient-interaction/1000/True/3/log_params.csv
+++ b/therapist-patient-interaction/24/False/3/log_params.csv
@@ -1,2 +1,2 @@
 with_feedback,objective,session,user_id,timeout
-True,descending_odd,3,1,15
+False,descending,3,24,15
diff --git a/therapist-patient-interaction/24/False/3/log_spec.csv b/therapist-patient-interaction/24/False/3/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..c0c24f83632022642b4e32d23997a9e016802aca
--- /dev/null
+++ b/therapist-patient-interaction/24/False/3/log_spec.csv
@@ -0,0 +1,5 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
+0,0,0,0,12.048,0,0,7,0.969,1,0,939
+0,0,0,0,7.797,0,1,14,0.758,2,0,934
+1,1,0,0,8.396,0,1,6,0.501,0,0,753
+1,1,1,0,0.0,0,2,20,0.0,0,0,732
diff --git a/therapist-patient-interaction/24/False/3/log_summary.csv b/therapist-patient-interaction/24/False/3/log_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..72d795f65de4248d2f92b866891d8fe2826a7baf
--- /dev/null
+++ b/therapist-patient-interaction/24/False/3/log_summary.csv
@@ -0,0 +1 @@
+tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
diff --git a/therapist-patient-interaction/24/True/1/bn_variables.csv b/therapist-patient-interaction/24/True/1/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..4ff458e6fa132483b3fa43bf67faa5318d73fa5f
--- /dev/null
+++ b/therapist-patient-interaction/24/True/1/bn_variables.csv
@@ -0,0 +1,12 @@
+user_action,game_state,attempt,agent_assistance
+0,0,0,0
+2,0,0,0
+2,0,1,1
+1,0,2,2
+0,0,3,3
+1,1,0,0
+0,1,1,2
+2,1,0,0
+0,1,1,2
+2,2,0,0
+0,2,1,1
diff --git a/therapist-patient-interaction/24/True/1/log_gen.csv b/therapist-patient-interaction/24/True/1/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..c42841eb415d53385e47a941aa2376f80b01274c
--- /dev/null
+++ b/therapist-patient-interaction/24/True/1/log_gen.csv
@@ -0,0 +1,6 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
+1.238,1,14.397,11,0,,947,0,0.0,1
+0.807,2,7.842,7,2,,906,0,0.0,4
+2.025,3,19.65,17,0,,894,0,0.0,2
+1.325,4,0.002,20,1,,872,0,0.0,2
+0.41,5,5.129,19,1,,698,0,0.0,2
diff --git a/therapist-patient-interaction/24/True/1/log_params.csv b/therapist-patient-interaction/24/True/1/log_params.csv
new file mode 100644
index 0000000000000000000000000000000000000000..194235d9b18a9f5963e55e0c10a52f9f16e69990
--- /dev/null
+++ b/therapist-patient-interaction/24/True/1/log_params.csv
@@ -0,0 +1,2 @@
+with_feedback,objective,session,user_id,timeout
+True,descending,1,24,15
diff --git a/therapist-patient-interaction/24/True/1/log_spec.csv b/therapist-patient-interaction/24/True/1/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..c2757b2f094206619a66471c3bff69db27883d3d
--- /dev/null
+++ b/therapist-patient-interaction/24/True/1/log_spec.csv
@@ -0,0 +1,12 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
+0,0,0,0,14.397,0,0,11,1.238,1,0,947
+0,2,0,0,15,0,0,,0,,0,
+0,2,1,0,15,0,0,,0,,1,
+0,1,2,0,0.0,0,2,2,0.0,12,2,606
+0,0,3,0,7.842,0,1,7,0.807,2,0,906
+1,1,0,0,9.379,0,1,8,0.989,8,0,537
+1,0,1,0,10.27,0,0,17,1.035,3,0,894
+1,2,0,0,15,0,0,,0,,0,
+1,0,1,0,0.002,0,2,20,1.325,4,0,872
+2,2,0,0,15,0,0,,0,,0,
+2,0,1,0,5.129,0,1,19,0.41,5,0,698
diff --git a/therapist-patient-interaction/24/True/1/log_summary.csv b/therapist-patient-interaction/24/True/1/log_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..157e1cff5ee7cedf7e21f9de3cd07b49ba7aec33
--- /dev/null
+++ b/therapist-patient-interaction/24/True/1/log_summary.csv
@@ -0,0 +1,2 @@
+tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
+5.805000000000001,0.0,47.019999999999996,4,11,0
diff --git a/therapist-patient-interaction/24/True/2/bn_variables.csv b/therapist-patient-interaction/24/True/2/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..db3fbb09c0117fabdfe7563175825c3338c648c0
--- /dev/null
+++ b/therapist-patient-interaction/24/True/2/bn_variables.csv
@@ -0,0 +1,13 @@
+user_action,game_state,attempt,agent_assistance
+0,0,0,0
+2,0,0,0
+2,0,1,1
+1,0,2,3
+0,0,3,4
+1,1,0,0
+0,1,1,2
+2,1,0,0
+1,1,1,2
+2,1,2,0
+0,1,3,1
+0,2,0,1
diff --git a/therapist-patient-interaction/24/True/2/log_gen.csv b/therapist-patient-interaction/24/True/2/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..95898a26d3980f7a1405e710e8daf32355439d32
--- /dev/null
+++ b/therapist-patient-interaction/24/True/2/log_gen.csv
@@ -0,0 +1 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
diff --git a/therapist-patient-interaction/24/True/2/log_params.csv b/therapist-patient-interaction/24/True/2/log_params.csv
new file mode 100644
index 0000000000000000000000000000000000000000..d0b192c9922521475d035aeed120e748432aa89b
--- /dev/null
+++ b/therapist-patient-interaction/24/True/2/log_params.csv
@@ -0,0 +1,2 @@
+with_feedback,objective,session,user_id,timeout
+True,descending,2,24,15
diff --git a/therapist-patient-interaction/24/True/2/log_spec.csv b/therapist-patient-interaction/24/True/2/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..e04843d7a0ce7dbfcca6bbbbbf4e43ee46db7da1
--- /dev/null
+++ b/therapist-patient-interaction/24/True/2/log_spec.csv
@@ -0,0 +1 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
diff --git a/therapist-patient-interaction/24/True/2/log_summary.csv b/therapist-patient-interaction/24/True/2/log_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..72d795f65de4248d2f92b866891d8fe2826a7baf
--- /dev/null
+++ b/therapist-patient-interaction/24/True/2/log_summary.csv
@@ -0,0 +1 @@
+tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
diff --git a/therapist-patient-interaction/1000/True/2/bn_variables.csv b/therapist-patient-interaction/24/True/3/bn_variables.csv
similarity index 58%
rename from therapist-patient-interaction/1000/True/2/bn_variables.csv
rename to therapist-patient-interaction/24/True/3/bn_variables.csv
index e0288b58be6b7ede870b92c64f34bd933cf0747f..5ee71b6750d8501820af6b1408c87ecbad6e674e 100644
--- a/therapist-patient-interaction/1000/True/2/bn_variables.csv
+++ b/therapist-patient-interaction/24/True/3/bn_variables.csv
@@ -1,12 +1,12 @@
 user_action,game_state,attempt,agent_assistance
 1,0,0,0
+0,0,1,1
+1,0,0,0
 2,0,1,1
 0,0,2,2
-2,0,0,1
-0,0,1,2
-2,1,0,1
+1,1,0,0
+1,1,1,1
+0,1,0,0
+2,1,0,0
 0,1,1,2
-2,1,0,1
-1,1,1,2
-0,1,2,3
-0,2,0,1
+0,0,0,0
diff --git a/therapist-patient-interaction/24/True/3/log_gen.csv b/therapist-patient-interaction/24/True/3/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..7fcc9cfcd83cb4d9da3666a7ec6107747abd47c8
--- /dev/null
+++ b/therapist-patient-interaction/24/True/3/log_gen.csv
@@ -0,0 +1,3 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
+2.894,1,20.247,20,0,,939,0,0.0,2
+1.602,2,2.913,11,1,,934,0,0.0,3
diff --git a/therapist-patient-interaction/24/True/3/log_params.csv b/therapist-patient-interaction/24/True/3/log_params.csv
new file mode 100644
index 0000000000000000000000000000000000000000..c2151596ecfc350ea00633f52ac6a487db2a3261
--- /dev/null
+++ b/therapist-patient-interaction/24/True/3/log_params.csv
@@ -0,0 +1,2 @@
+with_feedback,objective,session,user_id,timeout
+True,descending,3,24,15
diff --git a/therapist-patient-interaction/24/True/3/log_spec.csv b/therapist-patient-interaction/24/True/3/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..5bb1ac97be8a5613eaacd7343dbbf96ed71214c5
--- /dev/null
+++ b/therapist-patient-interaction/24/True/3/log_spec.csv
@@ -0,0 +1,8 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
+0,1,0,0,5.517,0,1,11,1.145,11,0,934
+0,0,1,0,14.729,0,0,20,1.749,1,0,939
+0,1,0,0,2.913,0,2,19,1.602,19,0,587
+0,2,1,0,15,0,0,,0,,0,
+0,0,2,0,0.0,0,2,11,0.0,2,0,934
+1,1,0,0,7.2,0,1,7,1.473,0,0,753
+1,1,1,0,0.0,0,2,7,0.0,4,0,753
diff --git a/therapist-patient-interaction/24/True/3/log_summary.csv b/therapist-patient-interaction/24/True/3/log_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..72d795f65de4248d2f92b866891d8fe2826a7baf
--- /dev/null
+++ b/therapist-patient-interaction/24/True/3/log_summary.csv
@@ -0,0 +1 @@
+tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
diff --git a/therapist-patient-interaction/25/False/1/bn_variables.csv b/therapist-patient-interaction/25/False/1/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..1b0f40cb10ea1c4a4f0006564797ab96b6ecefa9
--- /dev/null
+++ b/therapist-patient-interaction/25/False/1/bn_variables.csv
@@ -0,0 +1,12 @@
+user_action,game_state,attempt,agent_assistance
+2,0,0,0
+2,0,1,0
+2,0,2,0
+2,0,3,0
+1,0,0,0
+0,0,1,0
+0,1,0,0
+1,1,0,0
+1,1,1,0
+0,1,2,0
+0,2,0,0
diff --git a/therapist-patient-interaction/25/False/1/log_gen.csv b/therapist-patient-interaction/25/False/1/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..99947db8bd4956e2253454d75ecc8951a914e641
--- /dev/null
+++ b/therapist-patient-interaction/25/False/1/log_gen.csv
@@ -0,0 +1,6 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
+0.0,1,0.0,20,3,,698,0,0.0,4
+2.002,2,9.6,18,1,,894,0,0.0,2
+1.122,3,4.606,8,0,,947,0,0.0,1
+2.849,4,22.422,19,0,,289,0,0.0,3
+1.353,5,6.162,16,0,,693,0,0.0,1
diff --git a/therapist-patient-interaction/25/False/1/log_params.csv b/therapist-patient-interaction/25/False/1/log_params.csv
new file mode 100644
index 0000000000000000000000000000000000000000..5b53f8f580f194548efc5dda853b8e9c9fda6b56
--- /dev/null
+++ b/therapist-patient-interaction/25/False/1/log_params.csv
@@ -0,0 +1,2 @@
+with_feedback,objective,session,user_id,timeout
+False,descending_odd,1,25,15
diff --git a/therapist-patient-interaction/25/False/1/log_spec.csv b/therapist-patient-interaction/25/False/1/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..a57f4c6fe4f4f0c7f9921d1254e8bb493a76a647
--- /dev/null
+++ b/therapist-patient-interaction/25/False/1/log_spec.csv
@@ -0,0 +1,12 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
+0,2,0,0,15,0,0,,0,,0,
+0,2,1,0,15,0,0,,0,,1,
+0,2,2,0,15,0,0,,0,,2,
+0,2,3,0,15,0,0,,0,,0,
+0,1,0,0,2.255,0,2,1,0.223,1,1,698
+0,0,1,0,7.345,0,1,18,1.778,2,0,894
+1,0,0,0,4.606,0,2,8,1.122,3,0,947
+1,1,0,0,11.7,0,0,4,0.952,10,0,872
+1,1,1,0,4.486,0,2,4,0.87,16,0,693
+1,0,2,0,6.236,0,1,19,1.027,4,0,289
+2,0,0,0,6.162,0,1,16,1.353,5,0,693
diff --git a/therapist-patient-interaction/25/False/1/log_summary.csv b/therapist-patient-interaction/25/False/1/log_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..86af4b20662ce059d7c54e01376074c39878a80a
--- /dev/null
+++ b/therapist-patient-interaction/25/False/1/log_summary.csv
@@ -0,0 +1,2 @@
+tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
+7.326,0.0,42.79,4,11,0
diff --git a/therapist-patient-interaction/25/False/2/bn_variables.csv b/therapist-patient-interaction/25/False/2/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f36f4b51038718345ac7a5ffeeaa86c700551c2f
--- /dev/null
+++ b/therapist-patient-interaction/25/False/2/bn_variables.csv
@@ -0,0 +1,7 @@
+user_action,game_state,attempt,agent_assistance
+2,0,0,0
+0,0,1,0
+0,0,0,0
+2,1,0,0
+1,1,1,0
+1,1,2,0
diff --git a/therapist-patient-interaction/25/False/2/log_gen.csv b/therapist-patient-interaction/25/False/2/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..c957b5472e375c09633993623906ac1ff1083797
--- /dev/null
+++ b/therapist-patient-interaction/25/False/2/log_gen.csv
@@ -0,0 +1,3 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
+0.0,1,0.0,18,1,,587,0,0.0,2
+0.892,2,4.209,15,0,,667,0,0.0,1
diff --git a/therapist-patient-interaction/25/False/2/log_params.csv b/therapist-patient-interaction/25/False/2/log_params.csv
new file mode 100644
index 0000000000000000000000000000000000000000..a85a63af70a2a1489cb7a347ad61c938f4fdaa36
--- /dev/null
+++ b/therapist-patient-interaction/25/False/2/log_params.csv
@@ -0,0 +1,2 @@
+with_feedback,objective,session,user_id,timeout
+False,descending_odd,2,25,15
diff --git a/therapist-patient-interaction/25/False/2/log_spec.csv b/therapist-patient-interaction/25/False/2/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..7a2d740fbcb2ab5e5066be8a85e641e71d66022b
--- /dev/null
+++ b/therapist-patient-interaction/25/False/2/log_spec.csv
@@ -0,0 +1,7 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
+0,2,0,0,15,0,0,,0,,0,
+0,0,1,0,0.0,0,2,18,0.0,1,0,587
+0,0,0,0,4.209,0,2,15,0.892,2,0,667
+1,2,0,0,15,0,0,,0,,0,
+1,1,1,0,9.209,0,1,13,1.234,0,1,619
+1,1,2,0,0.0,0,2,13,0.0,4,1,619
diff --git a/therapist-patient-interaction/25/False/2/log_summary.csv b/therapist-patient-interaction/25/False/2/log_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..72d795f65de4248d2f92b866891d8fe2826a7baf
--- /dev/null
+++ b/therapist-patient-interaction/25/False/2/log_summary.csv
@@ -0,0 +1 @@
+tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
diff --git a/therapist-patient-interaction/25/False/3/bn_variables.csv b/therapist-patient-interaction/25/False/3/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..497241cc3c2717e05482227229b450b9bcad0b1f
--- /dev/null
+++ b/therapist-patient-interaction/25/False/3/bn_variables.csv
@@ -0,0 +1,4 @@
+user_action,game_state,attempt,agent_assistance
+1,0,0,0
+0,0,1,0
+0,0,0,0
diff --git a/therapist-patient-interaction/25/False/3/log_gen.csv b/therapist-patient-interaction/25/False/3/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..dbbddffeccfb47420cb16861685255a54a5e0cdd
--- /dev/null
+++ b/therapist-patient-interaction/25/False/3/log_gen.csv
@@ -0,0 +1,3 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
+2.526,1,18.666,12,0,,499,0,0.0,2
+0.687,2,1.091,20,0,,939,0,0.0,1
diff --git a/therapist-patient-interaction/25/False/3/log_params.csv b/therapist-patient-interaction/25/False/3/log_params.csv
new file mode 100644
index 0000000000000000000000000000000000000000..a72d33d957822113c1d3fe7de6485ddca3123bb1
--- /dev/null
+++ b/therapist-patient-interaction/25/False/3/log_params.csv
@@ -0,0 +1,2 @@
+with_feedback,objective,session,user_id,timeout
+False,descending_odd,3,25,15
diff --git a/therapist-patient-interaction/25/False/3/log_spec.csv b/therapist-patient-interaction/25/False/3/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..92ede373fe73c4ae386cf9fd933be52ba51a608d
--- /dev/null
+++ b/therapist-patient-interaction/25/False/3/log_spec.csv
@@ -0,0 +1,4 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
+0,1,0,0,12.698,0,0,1,1.602,20,0,939
+0,0,1,0,5.968,0,1,12,0.924,1,0,499
+0,0,0,0,1.091,0,2,20,0.687,2,0,939
diff --git a/therapist-patient-interaction/25/False/3/log_summary.csv b/therapist-patient-interaction/25/False/3/log_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..72d795f65de4248d2f92b866891d8fe2826a7baf
--- /dev/null
+++ b/therapist-patient-interaction/25/False/3/log_summary.csv
@@ -0,0 +1 @@
+tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
diff --git a/therapist-patient-interaction/25/True/1/bn_variables.csv b/therapist-patient-interaction/25/True/1/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..e35eb32aae9a4160c5706c2e4888b883950fcc5d
--- /dev/null
+++ b/therapist-patient-interaction/25/True/1/bn_variables.csv
@@ -0,0 +1,8 @@
+user_action,game_state,attempt,agent_assistance
+0,0,0,0
+0,0,0,0
+0,1,0,0
+0,1,0,0
+1,2,0,0
+1,2,1,0
+0,2,2,0
diff --git a/therapist-patient-interaction/25/True/1/log_gen.csv b/therapist-patient-interaction/25/True/1/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..e0c50656c69a3e91bb7845e81f1ad5022929b5be
--- /dev/null
+++ b/therapist-patient-interaction/25/True/1/log_gen.csv
@@ -0,0 +1,6 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
+1.08,1,8.049,11,0,,947,0,0.0,1
+1.272,2,9.724,8,0,,693,0,0.0,1
+0.929,3,7.441,13,0,,537,0,0.0,1
+1.054,4,3.186,17,0,,391,0,0.0,1
+4.957,5,20.402,15,0,,373,0,0.0,3
diff --git a/therapist-patient-interaction/25/True/1/log_params.csv b/therapist-patient-interaction/25/True/1/log_params.csv
new file mode 100644
index 0000000000000000000000000000000000000000..241ae9cd8e91c8342d418fe062edd73408b2fa21
--- /dev/null
+++ b/therapist-patient-interaction/25/True/1/log_params.csv
@@ -0,0 +1,2 @@
+with_feedback,objective,session,user_id,timeout
+True,descending_odd,1,25,15
diff --git a/therapist-patient-interaction/25/True/1/log_spec.csv b/therapist-patient-interaction/25/True/1/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..22c55dcf93691df9aec3fb9d3d8775e874f779a8
--- /dev/null
+++ b/therapist-patient-interaction/25/True/1/log_spec.csv
@@ -0,0 +1,8 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
+0,0,0,0,8.049,0,1,11,1.08,1,0,947
+0,0,0,0,9.724,0,1,8,1.272,2,0,693
+1,0,0,0,7.441,0,1,13,0.929,3,0,537
+1,0,0,0,3.186,0,2,17,1.054,4,0,391
+2,1,0,0,1.361,0,2,17,2.134,16,0,289
+2,1,1,0,11.669,0,0,16,2.06,16,0,289
+2,0,2,0,7.372,0,1,15,0.763,5,0,373
diff --git a/therapist-patient-interaction/25/True/1/log_summary.csv b/therapist-patient-interaction/25/True/1/log_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..cfb829b490ed8e0c89dda166f269033f2245cd98
--- /dev/null
+++ b/therapist-patient-interaction/25/True/1/log_summary.csv
@@ -0,0 +1,2 @@
+tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
+9.292000000000002,0.0,48.802,0,7,0
diff --git a/therapist-patient-interaction/25/True/2/bn_variables.csv b/therapist-patient-interaction/25/True/2/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..510cef5df5492b1ebf378179491e6d46f483aa37
--- /dev/null
+++ b/therapist-patient-interaction/25/True/2/bn_variables.csv
@@ -0,0 +1,10 @@
+user_action,game_state,attempt,agent_assistance
+2,0,0,0
+1,0,1,0
+1,0,2,0
+0,0,3,0
+1,0,0,0
+0,0,1,0
+1,1,0,0
+1,1,1,0
+1,1,2,0
diff --git a/therapist-patient-interaction/25/True/2/log_gen.csv b/therapist-patient-interaction/25/True/2/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..353c52869f22c82e140cf01e6b1a9c05381ca83a
--- /dev/null
+++ b/therapist-patient-interaction/25/True/2/log_gen.csv
@@ -0,0 +1,3 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
+4.555,1,19.024,7,1,,587,0,0.0,4
+2.016,2,14.853,15,0,,667,0,0.0,2
diff --git a/therapist-patient-interaction/25/True/2/log_params.csv b/therapist-patient-interaction/25/True/2/log_params.csv
new file mode 100644
index 0000000000000000000000000000000000000000..7755c023df7aa4b7f0bf12513541e5a052bae3d8
--- /dev/null
+++ b/therapist-patient-interaction/25/True/2/log_params.csv
@@ -0,0 +1,2 @@
+with_feedback,objective,session,user_id,timeout
+True,descending_odd,2,25,15
diff --git a/therapist-patient-interaction/25/True/2/log_spec.csv b/therapist-patient-interaction/25/True/2/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..36bc17ae5d74e7b19acf6063b417d8aecc9ca1ca
--- /dev/null
+++ b/therapist-patient-interaction/25/True/2/log_spec.csv
@@ -0,0 +1,10 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
+0,2,0,0,15,0,0,,0,,0,
+0,1,1,0,11.066,0,0,1,2.18,10,1,593
+0,1,2,0,5.721,0,1,1,1.097,9,1,619
+0,0,3,0,2.237,0,2,7,1.278,1,0,587
+0,1,0,0,8.894,0,1,2,0.655,9,0,619
+0,0,1,0,5.959,0,1,15,1.361,2,0,667
+1,1,0,0,12.943,0,0,19,1.602,19,0,753
+1,1,1,0,8.947,0,1,9,0.946,0,0,619
+1,1,2,0,0.0,0,2,19,0.0,0,0,753
diff --git a/therapist-patient-interaction/25/True/2/log_summary.csv b/therapist-patient-interaction/25/True/2/log_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..72d795f65de4248d2f92b866891d8fe2826a7baf
--- /dev/null
+++ b/therapist-patient-interaction/25/True/2/log_summary.csv
@@ -0,0 +1 @@
+tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
diff --git a/therapist-patient-interaction/25/True/3/bn_variables.csv b/therapist-patient-interaction/25/True/3/bn_variables.csv
new file mode 100644
index 0000000000000000000000000000000000000000..fa746ec37d4a029dc361efa5da7b263aaddd500c
--- /dev/null
+++ b/therapist-patient-interaction/25/True/3/bn_variables.csv
@@ -0,0 +1,3 @@
+user_action,game_state,attempt,agent_assistance
+1,0,0,0
+2,0,1,0
diff --git a/therapist-patient-interaction/25/True/3/log_gen.csv b/therapist-patient-interaction/25/True/3/log_gen.csv
new file mode 100644
index 0000000000000000000000000000000000000000..95898a26d3980f7a1405e710e8daf32355439d32
--- /dev/null
+++ b/therapist-patient-interaction/25/True/3/log_gen.csv
@@ -0,0 +1 @@
+cum_elapsed_time,to,cum_react_time,from,timeout,user_action,token_id,caregiver_feedback,avg_caregiver_assistance_per_move,attempt
diff --git a/therapist-patient-interaction/25/True/3/log_params.csv b/therapist-patient-interaction/25/True/3/log_params.csv
new file mode 100644
index 0000000000000000000000000000000000000000..686f83d67cc03717a99755f3f2730ae7700cf86a
--- /dev/null
+++ b/therapist-patient-interaction/25/True/3/log_params.csv
@@ -0,0 +1,2 @@
+with_feedback,objective,session,user_id,timeout
+True,descending_odd,3,25,15
diff --git a/therapist-patient-interaction/25/True/3/log_spec.csv b/therapist-patient-interaction/25/True/3/log_spec.csv
new file mode 100644
index 0000000000000000000000000000000000000000..09ac38bd06c514bbf34cc3089c4d85f39d177e62
--- /dev/null
+++ b/therapist-patient-interaction/25/True/3/log_spec.csv
@@ -0,0 +1,3 @@
+game_state,user_action,attempt,caregiver_feedback,react_time,caregiver_assistance,user_react_time,from,elapsed_time,to,timeout,token_id
+0,1,0,0,7.89,0,1,1,0.837,19,0,939
+0,2,1,0,15,0,0,,0,,0,
diff --git a/therapist-patient-interaction/25/True/3/log_summary.csv b/therapist-patient-interaction/25/True/3/log_summary.csv
new file mode 100644
index 0000000000000000000000000000000000000000..72d795f65de4248d2f92b866891d8fe2826a7baf
--- /dev/null
+++ b/therapist-patient-interaction/25/True/3/log_summary.csv
@@ -0,0 +1 @@
+tot_elapsed_time,avg_lev_assistance,tot_react_time,n_timeout,n_attempt,n_sociable
diff --git a/therapistBNInit.py b/therapistBNInit.py
index 0678f1339f3049ab0917f3b24f37de5e56a6b712..44652e22992cb230c85c3f6d366057da2f701033 100644
--- a/therapistBNInit.py
+++ b/therapistBNInit.py
@@ -165,8 +165,8 @@ parser.add_argument('--with_feedback', '--f', type=eval, choices=[True, False],
 args = parser.parse_args()
 
 run_batch = True
-from_id = 11
-to_id = 18
+from_id = 19
+to_id = 25
 
 if run_batch == False:
     user_id = args.user_id