abhinavk commited on
Commit
31db2de
1 Parent(s): c5ea02e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +31 -33
README.md CHANGED
@@ -84,42 +84,40 @@ A typical instance in the dataset:
84
 
85
  ```
86
  {
87
- "1": {
88
- "goal": "goal1_text",
89
- "steps": [
90
- "step1_text",
91
- "step2_text",
92
- ...
93
- ],
94
- "topics": "topic1_annotation",
95
- "image_urls": [
96
- "step1_url_text",
97
- "step2_url_text",
98
- ...
99
- ],
100
- "states": [
101
- {
102
- "answers_openpiv1_metadata": {
103
- "entity": "entity1 | entity2 | ...",
104
- "attribute": "attribute1 | attribute2 | ...",
105
- "answers": [
106
- "before: step1_entity1_before | step1_entity2_before, after: step1_entity1_after | step1_entity2_after",
107
- ...
108
- ],
109
- "modality": [
110
- "step1_entity1_modality_id | step1_entity2_modality_id",
111
- ...
112
- ]
113
- },
114
  "entity": "entity1 | entity2 | ...",
115
  "attribute": "attribute1 | attribute2 | ...",
116
  "answers": [
117
- "before: step1_entity1_before_merged | step1_entity2_before_merged, after: step1_entity1_after_merged | step1_entity2_after_merged",
118
- ...
 
 
 
 
119
  ]
120
- }
121
- ]
122
- }
 
 
 
 
 
 
123
  }
124
  ```
125
 
@@ -127,7 +125,7 @@ A typical instance in the dataset:
127
 
128
  The following is an excerpt from the dataset README:
129
 
130
- Within "qas", some fields should be self-explanatory. Listed below is an explanation about the others:
131
 
132
  #### Fields specific to questions:
133
 
 
84
 
85
  ```
86
  {
87
+ "goal": "goal1_text",
88
+ "steps": [
89
+ "step1_text",
90
+ "step2_text",
91
+ ...
92
+ ],
93
+ "topics": "topic1_annotation",
94
+ "image_urls": [
95
+ "step1_url_text",
96
+ "step2_url_text",
97
+ ...
98
+ ],
99
+ "states": [
100
+ {
101
+ "answers_openpiv1_metadata": {
 
 
 
 
 
 
 
 
 
 
 
 
102
  "entity": "entity1 | entity2 | ...",
103
  "attribute": "attribute1 | attribute2 | ...",
104
  "answers": [
105
+ "before: step1_entity1_before | step1_entity2_before, after: step1_entity1_after | step1_entity2_after",
106
+ ...
107
+ ],
108
+ "modality": [
109
+ "step1_entity1_modality_id | step1_entity2_modality_id",
110
+ ...
111
  ]
112
+ },
113
+ "entity": "entity1 | entity2 | ...",
114
+ "attribute": "attribute1 | attribute2 | ...",
115
+ "answers": [
116
+ "before: step1_entity1_before_merged | step1_entity2_before_merged, after: step1_entity1_after_merged | step1_entity2_after_merged",
117
+ ...
118
+ ]
119
+ }
120
+ ]
121
  }
122
  ```
123
 
 
125
 
126
  The following is an excerpt from the dataset README:
127
 
128
+ Within "goal", "steps", "topics", and "image_urls", the fields should be self-explanatory. Listed below is an explanation about those within "states":
129
 
130
  #### Fields specific to questions:
131