File size: 1,170 Bytes
a0048c1 ee652c1 a0048c1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
Using these files requires that you have already agreed to the Natural Scenes Dataset's Terms and Conditions.
.tar files numbering corresponding to the scanning session of the subject
behavior numpy files correspond to the following order, in relation to the variables listed here: https://cvnlab.slite.page/p/fRv4lz5V2F/Untitled
behavior = {
- "cocoidx": int(behav.iloc[jj]['73KID'])-1, #0
- "subject": subject, #1
- "session": int(behav.iloc[jj]['SESSION']), #2
- "run": int(behav.iloc[jj]['RUN']), #3
- "trial": int(behav.iloc[jj]['TRIAL']), #4
- "global_trial": int(i * (tar + 1)), #5
- "time": int(behav.iloc[jj]['TIME']), #6
- "isold": int(behav.iloc[jj]['ISOLD']), #7
- "iscorrect": iscorrect, #8
- "rt": rt, # 0 = no RT #9
- "changemind": changemind, #10
- "isoldcurrent": isoldcurrent, #11
- "iscorrectcurrent": iscorrectcurrent, #12
- "total1": total1, #13
- "total2": total2, #14
- "button": button, #15
- "shared1000": is_shared1000, #16
} |