ef1e43ce commited on
Commit
f78855c
·
verified ·
1 Parent(s): 58c0c51

Upload folder using huggingface_hub

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. README.md +124 -3
  2. mmred.png +3 -0
  3. seq_len_1/.ipynb_checkpoints/dataset_dict-checkpoint.json +1 -0
  4. seq_len_1/dataset_dict.json +1 -0
  5. seq_len_1/test/data-00000-of-00001.arrow +3 -0
  6. seq_len_1/test/dataset_info.json +32 -0
  7. seq_len_1/test/state.json +13 -0
  8. seq_len_1/train/data-00000-of-00001.arrow +3 -0
  9. seq_len_1/train/dataset_info.json +32 -0
  10. seq_len_1/train/state.json +13 -0
  11. seq_len_1/val/data-00000-of-00001.arrow +3 -0
  12. seq_len_1/val/dataset_info.json +32 -0
  13. seq_len_1/val/state.json +13 -0
  14. seq_len_128/dataset_dict.json +1 -0
  15. seq_len_128/test/data-00000-of-00001.arrow +3 -0
  16. seq_len_128/test/dataset_info.json +32 -0
  17. seq_len_128/test/state.json +13 -0
  18. seq_len_16/dataset_dict.json +1 -0
  19. seq_len_16/test/data-00000-of-00001.arrow +3 -0
  20. seq_len_16/test/dataset_info.json +32 -0
  21. seq_len_16/test/state.json +13 -0
  22. seq_len_16/train/data-00000-of-00001.arrow +3 -0
  23. seq_len_16/train/dataset_info.json +32 -0
  24. seq_len_16/train/state.json +13 -0
  25. seq_len_16/val/data-00000-of-00001.arrow +3 -0
  26. seq_len_16/val/dataset_info.json +32 -0
  27. seq_len_16/val/state.json +13 -0
  28. seq_len_2/dataset_dict.json +1 -0
  29. seq_len_2/test/data-00000-of-00001.arrow +3 -0
  30. seq_len_2/test/dataset_info.json +32 -0
  31. seq_len_2/test/state.json +13 -0
  32. seq_len_2/train/data-00000-of-00001.arrow +3 -0
  33. seq_len_2/train/dataset_info.json +32 -0
  34. seq_len_2/train/state.json +13 -0
  35. seq_len_2/val/data-00000-of-00001.arrow +3 -0
  36. seq_len_2/val/dataset_info.json +32 -0
  37. seq_len_2/val/state.json +13 -0
  38. seq_len_32/dataset_dict.json +1 -0
  39. seq_len_32/test/data-00000-of-00001.arrow +3 -0
  40. seq_len_32/test/dataset_info.json +32 -0
  41. seq_len_32/test/state.json +13 -0
  42. seq_len_4/dataset_dict.json +1 -0
  43. seq_len_4/test/data-00000-of-00001.arrow +3 -0
  44. seq_len_4/test/dataset_info.json +32 -0
  45. seq_len_4/test/state.json +13 -0
  46. seq_len_4/train/data-00000-of-00001.arrow +3 -0
  47. seq_len_4/train/dataset_info.json +32 -0
  48. seq_len_4/train/state.json +13 -0
  49. seq_len_4/val/data-00000-of-00001.arrow +3 -0
  50. seq_len_4/val/dataset_info.json +32 -0
README.md CHANGED
@@ -1,3 +1,124 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ configs:
3
+ - config_name: default
4
+ data_files:
5
+ - split: train
6
+ path: '*/train/*.arrow'
7
+ - split: val
8
+ path: '*/val/*.arrow'
9
+ - split: test
10
+ path: '*/test/*.arrow'
11
+ - config_name: seq_len_1
12
+ data_files:
13
+ - split: train
14
+ path: seq_len_1/train/*.arrow
15
+ - split: val
16
+ path: seq_len_1/val/*.arrow
17
+ - split: test
18
+ path: seq_len_1/test/*.arrow
19
+ - config_name: seq_len_2
20
+ data_files:
21
+ - split: train
22
+ path: seq_len_2/train/*.arrow
23
+ - split: val
24
+ path: seq_len_2/val/*.arrow
25
+ - split: test
26
+ path: seq_len_2/test/*.arrow
27
+ - config_name: seq_len_4
28
+ data_files:
29
+ - split: train
30
+ path: seq_len_4/train/*.arrow
31
+ - split: val
32
+ path: seq_len_4/val/*.arrow
33
+ - split: test
34
+ path: seq_len_4/test/*.arrow
35
+ - config_name: seq_len_8
36
+ data_files:
37
+ - split: train
38
+ path: seq_len_8/train/*.arrow
39
+ - split: val
40
+ path: seq_len_8/val/*.arrow
41
+ - split: test
42
+ path: seq_len_8/test/*.arrow
43
+ - config_name: seq_len_16
44
+ data_files:
45
+ - split: train
46
+ path: seq_len_16/train/*.arrow
47
+ - split: val
48
+ path: seq_len_16/val/*.arrow
49
+ - split: test
50
+ path: seq_len_16/test/*.arrow
51
+ - config_name: seq_len_32
52
+ data_files:
53
+ - split: test
54
+ path: seq_len_32/test/*.arrow
55
+ - config_name: seq_len_64
56
+ data_files:
57
+ - split: test
58
+ path: seq_len_64/test/*.arrow
59
+ - config_name: seq_len_128
60
+ data_files:
61
+ - split: test
62
+ path: seq_len_128/test/*.arrow
63
+ ---
64
+
65
+ # MMReD: A Cross-Modal Benchmark for Dense Reasoning
66
+
67
+ <center>
68
+ <img src="mmred.png" alt="Overview of MMReD Benchmark" width=1920>
69
+ </center>
70
+
71
+ This is the dataset & benchmark accompanying MMReD paper. It was obtained by running generation script in [MMReD repository](https://anonymous.4open.science/r/mmred-125A):
72
+
73
+ ```bash
74
+ python scripts/generate_dataset.py
75
+ ```
76
+
77
+ It only contains textual split of the dataset to save space as images can be deterministically generated from jsons.
78
+
79
+ To run full evaluation, training, or generate images from jsons for LVLMs, please refer to the repository.
80
+
81
+ ## Multi-Modal Controllable Environment = Dense Factual Haystack
82
+
83
+ **MMReD** introduces a concept of dense context, aiming at controllable generative evaluation of reasoning over arbitrarily long factually dense scenarios.
84
+
85
+ It contains 8 splits corresponding to different sequence lengths in environment transitions: [1, 2, 4, ..., 128]. Each split contains 24 evaluation questions with 200/50/50 train/val/test samples per question type.
86
+
87
+ ```python
88
+ from datasets import load_dataset
89
+ train_16 = load_dataset("dondo-sss/mmred", "seq_len_128")["train"]
90
+ test_128 = load_dataset("dondo-sss/mmred", "seq_len_128")["test"]
91
+ ```
92
+
93
+ Question are generally divided into 2 groups - resembling standard NIAH evaluation & our introduced Dense Long Context evaluation:
94
+
95
+ Different splits grouped by sequence length are available both form evaluation & training, with training samples generated up to sequence length of **16**.
96
+
97
+ | ID | Question template | Dataset Name |
98
+ |--------------|------------------------------------------------------------------------------------|----------------------------------|
99
+ |**NIAH**|
100
+ | FA-FA-R | In which room did [C] first appear? | room_on_char_first_app |
101
+ | FA-CCFA-R | In which room was [C1] when [C2] first appeared in the [R]? | char_on_char_first_app |
102
+ | FA-FR-C | Who was the first to appear in the [R]? | first_at_room |
103
+ | FA-RCFA-C | Who was in the [R1] when [C] first appeared in the [R2]? | char_at_frame |
104
+ | FA-NRFA-I | How many characters were in the [R1] when [C] first appeared in the [R2]? | n_room_on_char_first_app |
105
+ | FI-FA-R | In which room was [C] at the final step? | final_app |
106
+ | FI-CCFA-R | In which room was [C1] when [C2] made their final appearance in the [R]? | char_on_char_final_app |
107
+ | FI-LR-C | Who was the last to appear in the [R]? | last_at_room |
108
+ | FI-RCFA-C | Who was in the [R1] when [C] made their final appearance in the [R2]? | char_at_frame |
109
+ | FI-NRFA-I | How many chars were in the [R1] when [C] made their final app in the [R2]? | n_room_on_char_final_app |
110
+ | FX-CF-R | In which room was [C] at step [X]? | room_at_frame |
111
+ | FX-RF-C | Who was in the [R] at step [X]? | char_at_frame |
112
+ | FX-CCF-C | Who was in the same room as [C] at step [X]? | char_on_char_at_frame |
113
+ | FX-NCF-I | How many other characters were in the same room as [C] at step [X]? | n_char_at_frame |
114
+ | FX-NE-I | How many rooms were empty at step [X]? | n_empty |
115
+ |**LC**|
116
+ | LC-RE-R | Which room was empty for the [comp] steps? | room_empty |
117
+ | LC-WS-R | In which room did [C] spend the [comp] time? | where_spend |
118
+ | LC-CR-R | Which room was crowded (three or more people) for the most steps? | crowded_room |
119
+ | LC-WHS-C | Who spent the [comp] time in the [R]? | who_spend |
120
+ | LC-SA-C | Who spent the [comp] time alone in the rooms? | spend_alone |
121
+ | LC-ST-C | With whom did [C] spend the [comp] time together in the same room? | spend_together |
122
+ | LC-SR-I | How many steps did [C] spend in the [R]? | steps_in_room |
123
+ | LC-RV-I | How many different rooms did [C] visit? | rooms_visited |
124
+ | LC-CC-I | How many times did a crowd (three or more people in one room) appear? | crowd_count |
mmred.png ADDED

Git LFS Details

  • SHA256: 568c17cfd45291035f72c59391ffd2ea1d4af25ed5acdc718c4db7eb215cccd6
  • Pointer size: 131 Bytes
  • Size of remote file: 875 kB
seq_len_1/.ipynb_checkpoints/dataset_dict-checkpoint.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"splits": ["train", "val", "test"]}
seq_len_1/dataset_dict.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"splits": ["train", "val", "test"]}
seq_len_1/test/data-00000-of-00001.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:67f5d5b7e2db070e6c4dde528482d9832814d48bfd42fcbf7345609c66372d92
3
+ size 326064
seq_len_1/test/dataset_info.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "citation": "",
3
+ "description": "",
4
+ "features": {
5
+ "question": {
6
+ "dtype": "string",
7
+ "_type": "Value"
8
+ },
9
+ "seq_len": {
10
+ "dtype": "int64",
11
+ "_type": "Value"
12
+ },
13
+ "answer": {
14
+ "dtype": "string",
15
+ "_type": "Value"
16
+ },
17
+ "qid": {
18
+ "dtype": "string",
19
+ "_type": "Value"
20
+ },
21
+ "qtype": {
22
+ "dtype": "string",
23
+ "_type": "Value"
24
+ },
25
+ "atype": {
26
+ "dtype": "string",
27
+ "_type": "Value"
28
+ }
29
+ },
30
+ "homepage": "",
31
+ "license": ""
32
+ }
seq_len_1/test/state.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "data-00000-of-00001.arrow"
5
+ }
6
+ ],
7
+ "_fingerprint": "7bf7aeb464e83409",
8
+ "_format_columns": null,
9
+ "_format_kwargs": {},
10
+ "_format_type": null,
11
+ "_output_all_columns": false,
12
+ "_split": "test"
13
+ }
seq_len_1/train/data-00000-of-00001.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7e1833f9f7be3e2eaf73566c78acb3ea9e7579dbd5756f24a3bc7204f210d940
3
+ size 1298504
seq_len_1/train/dataset_info.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "citation": "",
3
+ "description": "",
4
+ "features": {
5
+ "question": {
6
+ "dtype": "string",
7
+ "_type": "Value"
8
+ },
9
+ "seq_len": {
10
+ "dtype": "int64",
11
+ "_type": "Value"
12
+ },
13
+ "answer": {
14
+ "dtype": "string",
15
+ "_type": "Value"
16
+ },
17
+ "qid": {
18
+ "dtype": "string",
19
+ "_type": "Value"
20
+ },
21
+ "qtype": {
22
+ "dtype": "string",
23
+ "_type": "Value"
24
+ },
25
+ "atype": {
26
+ "dtype": "string",
27
+ "_type": "Value"
28
+ }
29
+ },
30
+ "homepage": "",
31
+ "license": ""
32
+ }
seq_len_1/train/state.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "data-00000-of-00001.arrow"
5
+ }
6
+ ],
7
+ "_fingerprint": "1fb09a7abace5964",
8
+ "_format_columns": null,
9
+ "_format_kwargs": {},
10
+ "_format_type": null,
11
+ "_output_all_columns": false,
12
+ "_split": "train"
13
+ }
seq_len_1/val/data-00000-of-00001.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d0602d0155e943b37a2e968c8656061584cb8809225d7755411bdeac05a9a596
3
+ size 325656
seq_len_1/val/dataset_info.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "citation": "",
3
+ "description": "",
4
+ "features": {
5
+ "question": {
6
+ "dtype": "string",
7
+ "_type": "Value"
8
+ },
9
+ "seq_len": {
10
+ "dtype": "int64",
11
+ "_type": "Value"
12
+ },
13
+ "answer": {
14
+ "dtype": "string",
15
+ "_type": "Value"
16
+ },
17
+ "qid": {
18
+ "dtype": "string",
19
+ "_type": "Value"
20
+ },
21
+ "qtype": {
22
+ "dtype": "string",
23
+ "_type": "Value"
24
+ },
25
+ "atype": {
26
+ "dtype": "string",
27
+ "_type": "Value"
28
+ }
29
+ },
30
+ "homepage": "",
31
+ "license": ""
32
+ }
seq_len_1/val/state.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "data-00000-of-00001.arrow"
5
+ }
6
+ ],
7
+ "_fingerprint": "6d11f4717bf9b27c",
8
+ "_format_columns": null,
9
+ "_format_kwargs": {},
10
+ "_format_type": null,
11
+ "_output_all_columns": false,
12
+ "_split": "val"
13
+ }
seq_len_128/dataset_dict.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"splits": ["test"]}
seq_len_128/test/data-00000-of-00001.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7b14089d08c7219375e1eb26ad1efa2694969840026b54422d198c353f861d0b
3
+ size 24099272
seq_len_128/test/dataset_info.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "citation": "",
3
+ "description": "",
4
+ "features": {
5
+ "question": {
6
+ "dtype": "string",
7
+ "_type": "Value"
8
+ },
9
+ "seq_len": {
10
+ "dtype": "int64",
11
+ "_type": "Value"
12
+ },
13
+ "answer": {
14
+ "dtype": "string",
15
+ "_type": "Value"
16
+ },
17
+ "qid": {
18
+ "dtype": "string",
19
+ "_type": "Value"
20
+ },
21
+ "qtype": {
22
+ "dtype": "string",
23
+ "_type": "Value"
24
+ },
25
+ "atype": {
26
+ "dtype": "string",
27
+ "_type": "Value"
28
+ }
29
+ },
30
+ "homepage": "",
31
+ "license": ""
32
+ }
seq_len_128/test/state.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "data-00000-of-00001.arrow"
5
+ }
6
+ ],
7
+ "_fingerprint": "5a1c4c1bb6f1f638",
8
+ "_format_columns": null,
9
+ "_format_kwargs": {},
10
+ "_format_type": null,
11
+ "_output_all_columns": false,
12
+ "_split": "test"
13
+ }
seq_len_16/dataset_dict.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"splits": ["train", "val", "test"]}
seq_len_16/test/data-00000-of-00001.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7318c9e350d686f2388d1f14c9109f7784c5bdd6792d4b4ac956672f54493ceb
3
+ size 3122192
seq_len_16/test/dataset_info.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "citation": "",
3
+ "description": "",
4
+ "features": {
5
+ "question": {
6
+ "dtype": "string",
7
+ "_type": "Value"
8
+ },
9
+ "seq_len": {
10
+ "dtype": "int64",
11
+ "_type": "Value"
12
+ },
13
+ "answer": {
14
+ "dtype": "string",
15
+ "_type": "Value"
16
+ },
17
+ "qid": {
18
+ "dtype": "string",
19
+ "_type": "Value"
20
+ },
21
+ "qtype": {
22
+ "dtype": "string",
23
+ "_type": "Value"
24
+ },
25
+ "atype": {
26
+ "dtype": "string",
27
+ "_type": "Value"
28
+ }
29
+ },
30
+ "homepage": "",
31
+ "license": ""
32
+ }
seq_len_16/test/state.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "data-00000-of-00001.arrow"
5
+ }
6
+ ],
7
+ "_fingerprint": "ee2411e00e9ef17e",
8
+ "_format_columns": null,
9
+ "_format_kwargs": {},
10
+ "_format_type": null,
11
+ "_output_all_columns": false,
12
+ "_split": "test"
13
+ }
seq_len_16/train/data-00000-of-00001.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c178554601ca398e414b254a010eb4eaf2fe3c8552cde02d4ae6f9f5a2b2e4af
3
+ size 12482360
seq_len_16/train/dataset_info.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "citation": "",
3
+ "description": "",
4
+ "features": {
5
+ "question": {
6
+ "dtype": "string",
7
+ "_type": "Value"
8
+ },
9
+ "seq_len": {
10
+ "dtype": "int64",
11
+ "_type": "Value"
12
+ },
13
+ "answer": {
14
+ "dtype": "string",
15
+ "_type": "Value"
16
+ },
17
+ "qid": {
18
+ "dtype": "string",
19
+ "_type": "Value"
20
+ },
21
+ "qtype": {
22
+ "dtype": "string",
23
+ "_type": "Value"
24
+ },
25
+ "atype": {
26
+ "dtype": "string",
27
+ "_type": "Value"
28
+ }
29
+ },
30
+ "homepage": "",
31
+ "license": ""
32
+ }
seq_len_16/train/state.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "data-00000-of-00001.arrow"
5
+ }
6
+ ],
7
+ "_fingerprint": "b7a3fe634663fba9",
8
+ "_format_columns": null,
9
+ "_format_kwargs": {},
10
+ "_format_type": null,
11
+ "_output_all_columns": false,
12
+ "_split": "train"
13
+ }
seq_len_16/val/data-00000-of-00001.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:05d68bbb7c07880e6c84be089981f579b7817965051d0f688c41e61901915818
3
+ size 3122192
seq_len_16/val/dataset_info.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "citation": "",
3
+ "description": "",
4
+ "features": {
5
+ "question": {
6
+ "dtype": "string",
7
+ "_type": "Value"
8
+ },
9
+ "seq_len": {
10
+ "dtype": "int64",
11
+ "_type": "Value"
12
+ },
13
+ "answer": {
14
+ "dtype": "string",
15
+ "_type": "Value"
16
+ },
17
+ "qid": {
18
+ "dtype": "string",
19
+ "_type": "Value"
20
+ },
21
+ "qtype": {
22
+ "dtype": "string",
23
+ "_type": "Value"
24
+ },
25
+ "atype": {
26
+ "dtype": "string",
27
+ "_type": "Value"
28
+ }
29
+ },
30
+ "homepage": "",
31
+ "license": ""
32
+ }
seq_len_16/val/state.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "data-00000-of-00001.arrow"
5
+ }
6
+ ],
7
+ "_fingerprint": "a2e72103ad02d82b",
8
+ "_format_columns": null,
9
+ "_format_kwargs": {},
10
+ "_format_type": null,
11
+ "_output_all_columns": false,
12
+ "_split": "val"
13
+ }
seq_len_2/dataset_dict.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"splits": ["train", "val", "test"]}
seq_len_2/test/data-00000-of-00001.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4d734c6a2c63b0a26ad66ee5bd9e9284b86b228ac272a1ac168ca25427afd2f
3
+ size 512560
seq_len_2/test/dataset_info.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "citation": "",
3
+ "description": "",
4
+ "features": {
5
+ "question": {
6
+ "dtype": "string",
7
+ "_type": "Value"
8
+ },
9
+ "seq_len": {
10
+ "dtype": "int64",
11
+ "_type": "Value"
12
+ },
13
+ "answer": {
14
+ "dtype": "string",
15
+ "_type": "Value"
16
+ },
17
+ "qid": {
18
+ "dtype": "string",
19
+ "_type": "Value"
20
+ },
21
+ "qtype": {
22
+ "dtype": "string",
23
+ "_type": "Value"
24
+ },
25
+ "atype": {
26
+ "dtype": "string",
27
+ "_type": "Value"
28
+ }
29
+ },
30
+ "homepage": "",
31
+ "license": ""
32
+ }
seq_len_2/test/state.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "data-00000-of-00001.arrow"
5
+ }
6
+ ],
7
+ "_fingerprint": "c228fc1f082a7f31",
8
+ "_format_columns": null,
9
+ "_format_kwargs": {},
10
+ "_format_type": null,
11
+ "_output_all_columns": false,
12
+ "_split": "test"
13
+ }
seq_len_2/train/data-00000-of-00001.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:de68c7ef9a837173f4535458380b1f2b5a874a10ec447e63c2d22f2f3dd29190
3
+ size 2045536
seq_len_2/train/dataset_info.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "citation": "",
3
+ "description": "",
4
+ "features": {
5
+ "question": {
6
+ "dtype": "string",
7
+ "_type": "Value"
8
+ },
9
+ "seq_len": {
10
+ "dtype": "int64",
11
+ "_type": "Value"
12
+ },
13
+ "answer": {
14
+ "dtype": "string",
15
+ "_type": "Value"
16
+ },
17
+ "qid": {
18
+ "dtype": "string",
19
+ "_type": "Value"
20
+ },
21
+ "qtype": {
22
+ "dtype": "string",
23
+ "_type": "Value"
24
+ },
25
+ "atype": {
26
+ "dtype": "string",
27
+ "_type": "Value"
28
+ }
29
+ },
30
+ "homepage": "",
31
+ "license": ""
32
+ }
seq_len_2/train/state.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "data-00000-of-00001.arrow"
5
+ }
6
+ ],
7
+ "_fingerprint": "6e93c44acc77da0e",
8
+ "_format_columns": null,
9
+ "_format_kwargs": {},
10
+ "_format_type": null,
11
+ "_output_all_columns": false,
12
+ "_split": "train"
13
+ }
seq_len_2/val/data-00000-of-00001.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19abab75ca5e1a5996fa3abc0e4d10ebdefa626bb80fac3360beda5b8995d6d7
3
+ size 512472
seq_len_2/val/dataset_info.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "citation": "",
3
+ "description": "",
4
+ "features": {
5
+ "question": {
6
+ "dtype": "string",
7
+ "_type": "Value"
8
+ },
9
+ "seq_len": {
10
+ "dtype": "int64",
11
+ "_type": "Value"
12
+ },
13
+ "answer": {
14
+ "dtype": "string",
15
+ "_type": "Value"
16
+ },
17
+ "qid": {
18
+ "dtype": "string",
19
+ "_type": "Value"
20
+ },
21
+ "qtype": {
22
+ "dtype": "string",
23
+ "_type": "Value"
24
+ },
25
+ "atype": {
26
+ "dtype": "string",
27
+ "_type": "Value"
28
+ }
29
+ },
30
+ "homepage": "",
31
+ "license": ""
32
+ }
seq_len_2/val/state.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "data-00000-of-00001.arrow"
5
+ }
6
+ ],
7
+ "_fingerprint": "79f8b8d56cb84d8a",
8
+ "_format_columns": null,
9
+ "_format_kwargs": {},
10
+ "_format_type": null,
11
+ "_output_all_columns": false,
12
+ "_split": "val"
13
+ }
seq_len_32/dataset_dict.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"splits": ["test"]}
seq_len_32/test/data-00000-of-00001.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e190a61cd316d3e83c6ae0213bf98f83df1015cdd6806ac591ccc2ca604a5c6
3
+ size 6112848
seq_len_32/test/dataset_info.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "citation": "",
3
+ "description": "",
4
+ "features": {
5
+ "question": {
6
+ "dtype": "string",
7
+ "_type": "Value"
8
+ },
9
+ "seq_len": {
10
+ "dtype": "int64",
11
+ "_type": "Value"
12
+ },
13
+ "answer": {
14
+ "dtype": "string",
15
+ "_type": "Value"
16
+ },
17
+ "qid": {
18
+ "dtype": "string",
19
+ "_type": "Value"
20
+ },
21
+ "qtype": {
22
+ "dtype": "string",
23
+ "_type": "Value"
24
+ },
25
+ "atype": {
26
+ "dtype": "string",
27
+ "_type": "Value"
28
+ }
29
+ },
30
+ "homepage": "",
31
+ "license": ""
32
+ }
seq_len_32/test/state.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "data-00000-of-00001.arrow"
5
+ }
6
+ ],
7
+ "_fingerprint": "a91bc281d8e80116",
8
+ "_format_columns": null,
9
+ "_format_kwargs": {},
10
+ "_format_type": null,
11
+ "_output_all_columns": false,
12
+ "_split": "test"
13
+ }
seq_len_4/dataset_dict.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"splits": ["train", "val", "test"]}
seq_len_4/test/data-00000-of-00001.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd1ecdaa1df79f31a5de8a57bf8fd99170081b87b087397b6d6026a3f0847d4d
3
+ size 884216
seq_len_4/test/dataset_info.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "citation": "",
3
+ "description": "",
4
+ "features": {
5
+ "question": {
6
+ "dtype": "string",
7
+ "_type": "Value"
8
+ },
9
+ "seq_len": {
10
+ "dtype": "int64",
11
+ "_type": "Value"
12
+ },
13
+ "answer": {
14
+ "dtype": "string",
15
+ "_type": "Value"
16
+ },
17
+ "qid": {
18
+ "dtype": "string",
19
+ "_type": "Value"
20
+ },
21
+ "qtype": {
22
+ "dtype": "string",
23
+ "_type": "Value"
24
+ },
25
+ "atype": {
26
+ "dtype": "string",
27
+ "_type": "Value"
28
+ }
29
+ },
30
+ "homepage": "",
31
+ "license": ""
32
+ }
seq_len_4/test/state.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "data-00000-of-00001.arrow"
5
+ }
6
+ ],
7
+ "_fingerprint": "76e612f2f4b4a0c4",
8
+ "_format_columns": null,
9
+ "_format_kwargs": {},
10
+ "_format_type": null,
11
+ "_output_all_columns": false,
12
+ "_split": "test"
13
+ }
seq_len_4/train/data-00000-of-00001.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f561d77ed5cfccca705126a8d0464b2c2090e335afe7bcbb653aeefbea9d6316
3
+ size 3532552
seq_len_4/train/dataset_info.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "citation": "",
3
+ "description": "",
4
+ "features": {
5
+ "question": {
6
+ "dtype": "string",
7
+ "_type": "Value"
8
+ },
9
+ "seq_len": {
10
+ "dtype": "int64",
11
+ "_type": "Value"
12
+ },
13
+ "answer": {
14
+ "dtype": "string",
15
+ "_type": "Value"
16
+ },
17
+ "qid": {
18
+ "dtype": "string",
19
+ "_type": "Value"
20
+ },
21
+ "qtype": {
22
+ "dtype": "string",
23
+ "_type": "Value"
24
+ },
25
+ "atype": {
26
+ "dtype": "string",
27
+ "_type": "Value"
28
+ }
29
+ },
30
+ "homepage": "",
31
+ "license": ""
32
+ }
seq_len_4/train/state.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "data-00000-of-00001.arrow"
5
+ }
6
+ ],
7
+ "_fingerprint": "12a2e9c1e0d6785c",
8
+ "_format_columns": null,
9
+ "_format_kwargs": {},
10
+ "_format_type": null,
11
+ "_output_all_columns": false,
12
+ "_split": "train"
13
+ }
seq_len_4/val/data-00000-of-00001.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:12feeb5cd9b3065a54b6eae64379843510d8a0597f2f919b206a2e12a0e2a361
3
+ size 883880
seq_len_4/val/dataset_info.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "citation": "",
3
+ "description": "",
4
+ "features": {
5
+ "question": {
6
+ "dtype": "string",
7
+ "_type": "Value"
8
+ },
9
+ "seq_len": {
10
+ "dtype": "int64",
11
+ "_type": "Value"
12
+ },
13
+ "answer": {
14
+ "dtype": "string",
15
+ "_type": "Value"
16
+ },
17
+ "qid": {
18
+ "dtype": "string",
19
+ "_type": "Value"
20
+ },
21
+ "qtype": {
22
+ "dtype": "string",
23
+ "_type": "Value"
24
+ },
25
+ "atype": {
26
+ "dtype": "string",
27
+ "_type": "Value"
28
+ }
29
+ },
30
+ "homepage": "",
31
+ "license": ""
32
+ }