Update README.md
Browse files
README.md
CHANGED
@@ -131,35 +131,29 @@ for example in dataset:
|
|
131 |
"timestamp": 1303205289,
|
132 |
"text_html": "...",
|
133 |
"text_markdown": "...",
|
134 |
-
"comments":
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
}
|
142 |
-
|
143 |
-
"answers": [
|
144 |
-
{
|
145 |
-
"answer_id": 11243,
|
146 |
-
"timestamp": 1303207791,
|
147 |
-
"is_accepted": 1,
|
148 |
-
"text_html": "...",
|
149 |
-
"text_markdown": "...",
|
150 |
-
"score": 3,
|
151 |
-
"author": "...",
|
152 |
-
"comments": [
|
153 |
-
{
|
154 |
-
"text": "...",
|
155 |
-
"author": "...",
|
156 |
-
"comment_id": 11246,
|
157 |
-
"score": 0,
|
158 |
-
"timestamp": 1303207961
|
159 |
-
}
|
160 |
-
]
|
161 |
-
}
|
162 |
-
]
|
163 |
}
|
164 |
```
|
165 |
|
|
|
131 |
"timestamp": 1303205289,
|
132 |
"text_html": "...",
|
133 |
"text_markdown": "...",
|
134 |
+
"comments": {
|
135 |
+
"text": ["...", ...],
|
136 |
+
"author": ["...", ...],
|
137 |
+
"comment_id": [11236, ...],
|
138 |
+
"score": [0, ...],
|
139 |
+
"timestamp": [1303205411, ...]
|
140 |
+
},
|
141 |
+
"answers": {
|
142 |
+
"answer_id": [11243, ...],
|
143 |
+
"timestamp": [1303207791, ...],
|
144 |
+
"is_accepted": [1, ...],
|
145 |
+
"text_html": ["...", ...],
|
146 |
+
"text_markdown": ["...", ...],
|
147 |
+
"score": [3, ...],
|
148 |
+
"author": ["...", ...],
|
149 |
+
"comments": {
|
150 |
+
"text": ["...", ...],
|
151 |
+
"author": ["...", ...],
|
152 |
+
"comment_id": [11246, ...],
|
153 |
+
"score": [0, ...],
|
154 |
+
"timestamp": [1303207961, ...]
|
155 |
}
|
156 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
157 |
}
|
158 |
```
|
159 |
|