jmc255 commited on
Commit
93a7bb9
1 Parent(s): 6a78800
Files changed (1) hide show
  1. README.md +43 -0
README.md CHANGED
@@ -63,6 +63,49 @@ It was created July 31, 2020 and last updated September 27, 2023.
63
 
64
  <!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->
65
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66
 
67
 
68
 
 
63
 
64
  <!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->
65
 
66
+ Here is an example of the structure of the data:
67
+
68
+ ```
69
+ {
70
+ "subject_id": 111,
71
+ "treatment": "aphantasia",
72
+ "demographics": {
73
+ "country": "United States",
74
+ "age": 56,
75
+ "gender": "male",
76
+ "occupation": "sales/music",
77
+ "art_ability": 3,
78
+ "art_experience": "None",
79
+ "device": "desktop",
80
+ "input": "mouse",
81
+ "difficult": "memorydrawing",
82
+ "diff_explanation": "drawing i have little patience for i can do it but i will spend hours editing (never got the hang of digital drawing on screens",
83
+ "vviq_score": 16,
84
+ "osiq_score": 61
85
+ },
86
+ "drawings": {
87
+ "kitchen": {
88
+ "perception": <PIL.PngImagePlugin.PngImageFile image mode=RGB size=500x500>,
89
+ "memory": <PIL.PngImagePlugin.PngImageFile image mode=RGB size=500x500>
90
+ },
91
+ "livingroom": {
92
+ "perception": <PIL.PngImagePlugin.PngImageFile image mode=RGB size=500x500>,
93
+ "memory": <PIL.PngImagePlugin.PngImageFile image mode=RGB size=500x500>
94
+ },
95
+ "bedroom": {
96
+ "perception": <PIL.PngImagePlugin.PngImageFile image mode=RGB size=500x500>,
97
+ "memory": <PIL.PngImagePlugin.PngImageFile image mode=RGB size=500x500>
98
+ }
99
+ },
100
+ "image": {
101
+ "kitchen": <PIL.PngImagePlugin.PngImageFile image mode=RGB size=500x500>,
102
+ "livingroom": <PIL.PngImagePlugin.PngImageFile image mode=RGB size=500x500>,
103
+ "bedroom": <PIL.PngImagePlugin.PngImageFile image mode=RGB size=500x500>
104
+ }
105
+ }
106
+ ```
107
+
108
+ ## Data Fields
109
 
110
 
111