Updated behavioural test to save initial value of tracks

This commit is contained in:
2019-12-10 12:05:59 +00:00
parent af4e77c8c7
commit c8380b3fd6
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -137,6 +137,7 @@ class DaTestThread(BaseThread):
delete_if_exists(out_dir)
out_info = os.path.join(out_dir, "stim_info.csv")
dir_must_exist(out_dir)
breakpoint()
for ind, dir_name in enumerate(stim_dirs):
stim_dir = os.path.join(self.listDir, dir_name)
+1 -1
View File
@@ -425,7 +425,7 @@ class AdaptiveTrack():
self.snrTrack[:] = np.nan
self.snrTrack[0] = 0.0
# Count number of presented trials
self.trialN = 0
self.trialN = 1
self.reduction_coef = np.load(red_coef)*np.load(cal_coef)
self.wordsCorrect = np.full((180, 5), False, dtype=bool)