highdeff commited on
Commit
94e8d03
·
1 Parent(s): 93a40be

Upload train.json

Browse files
Files changed (1) hide show
  1. train.json +44 -0
train.json ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "data": [
3
+ {
4
+ "title": "Sample Question Answer Pair 1",
5
+ "paragraphs": [
6
+ {
7
+ "context": "This is the context for the sample question.",
8
+ "qas": [
9
+ {
10
+ "question": "What is this context about?",
11
+ "id": "0001",
12
+ "answers": [
13
+ {
14
+ "text": "The context is about a sample question.",
15
+ "answer_start": 13
16
+ }
17
+ ]
18
+ }
19
+ ]
20
+ }
21
+ ]
22
+ },
23
+ {
24
+ "title": "Sample Question Answer Pair 2",
25
+ "paragraphs": [
26
+ {
27
+ "context": "This is the context for the second sample question.",
28
+ "qas": [
29
+ {
30
+ "question": "What is the second question?",
31
+ "id": "0002",
32
+ "answers": [
33
+ {
34
+ "text": "The second question is about the context.",
35
+ "answer_start": 27
36
+ }
37
+ ]
38
+ }
39
+ ]
40
+ }
41
+ ]
42
+ }
43
+ ]
44
+ }