回答編集履歴

1

Update

2021/11/04 08:54

投稿

melian
melian

スコア20655

test CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
 
4
4
 
5
- 愚直に
5
+ 愚直に
6
6
 
7
7
 
8
8
 
@@ -16,15 +16,15 @@
16
16
 
17
17
  'answers': [
18
18
 
19
- {'answer_start': [1], 'text': ['text 01']},
19
+ "[{'text': 'text 01', 'answer_start': 1}]",
20
20
 
21
- {'answer_start': [2], 'text': ['text 02']},
21
+ "[{'text': 'text 02', 'answer_start': 2}]",
22
22
 
23
- {'answer_start': [3], 'text': ['text 03']},
23
+ "[{'text': 'text 03', 'answer_start': 3}]",
24
24
 
25
- {'answer_start': [4], 'text': ['text 04']},
25
+ "[{'text': 'text 04', 'answer_start': 4}]",
26
26
 
27
- {'answer_start': [5], 'text': ['text 05']},
27
+ "[{'text': 'text 05', 'answer_start': 5}]",
28
28
 
29
29
  ],
30
30
 
@@ -32,9 +32,7 @@
32
32
 
33
33
 
34
34
 
35
- train_fa.answers = train_fa.answers.apply(
35
+ train_fa.answers = train_fa.answers.apply(lambda x: x[1:-1])
36
-
37
- lambda x: {k: v[0] for k, v in x.items()})
38
36
 
39
37
 
40
38
 
@@ -44,16 +42,14 @@
44
42
 
45
43
  #
46
44
 
47
- answers
45
+ 0 {'text': 'text 01', 'answer_start': 1}
48
46
 
49
- 0 {'answer_start': 1, 'text': 'text 01'}
47
+ 1 {'text': 'text 02', 'answer_start': 2}
50
48
 
51
- 1 {'answer_start': 2, 'text': 'text 02'}
49
+ 2 {'text': 'text 03', 'answer_start': 3}
52
50
 
53
- 2 {'answer_start': 3, 'text': 'text 03'}
51
+ 3 {'text': 'text 04', 'answer_start': 4}
54
52
 
55
- 3 {'answer_start': 4, 'text': 'text 04'}
56
-
57
- 4 {'answer_start': 5, 'text': 'text 05'}
53
+ 4 {'text': 'text 05', 'answer_start': 5}
58
54
 
59
55
  ```