File size: 1,489 Bytes
f4ed0f2 a0048c1 f4ed0f2 a0048c1 a295e10 a0048c1 fa0db42 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 26 27 28 29 |
Using these files requires that you have already agreed to the Natural Scenes Dataset's Terms and Conditions: https://cvnlab.slite.page/p/IB6BSeW_7o/Terms-and-Conditions
Webdatasets only contain behavioral information, .tar filename numbering correspondings to the scanning session of the subject.
(Always use "new_test" instead of "test" in the wds folders, "test" refers to using the old NSD data from before they released the full set of scanning sessions.)
behavior numpy files correspond to the following order, in relation to the variables listed here: https://cvnlab.slite.page/p/fRv4lz5V2F/Untitled
"-1" values were used in place of NaN.
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
} |