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