JMankewitz / baby-info

An eyetracking experiment measuring toddlers' sensitivity to informativity
1 stars 0 forks source link

Fix file writing during contingent phases #10

Closed JMankewitz closed 1 year ago

JMankewitz commented 1 year ago

Right now the code is based on CoSample, which writes 3 files for each participant (active_data, active_training, and training_data).

I probably want a file for training_data (adds the order information plus the trial timing from the computer system instead of tobii) and a file for the active_data (the selections and the selection timing).

Right now, I create all three but am only writing to training_data. I think the code for the active data should be here self.experiment.tracker.stop_recording() and roughly based on the code here https://github.com/JMankewitz/baby-info/blob/718ab6153a4bbe1b40a89afc77040a7f57d3e43c/BabyInfo_v1/BabyInfo_v1.py#LL429C5-L429C5

JMankewitz commented 1 year ago

Fixed!