Mo7art commited on
Commit
1b662d2
·
verified ·
1 Parent(s): bd29be2

Add files using upload-large-folder tool

Browse files
Files changed (45) hide show
  1. README.md +115 -0
  2. chunk_records/r0_00000.parquet +3 -0
  3. chunk_records/r0_00001.parquet +3 -0
  4. chunk_records/r0_00002.parquet +3 -0
  5. chunk_records/r1_00000.parquet +3 -0
  6. chunk_records/r1_00001.parquet +3 -0
  7. chunk_records/r1_00002.parquet +3 -0
  8. chunk_records/r2_00000.parquet +3 -0
  9. chunk_records/r2_00001.parquet +3 -0
  10. chunk_records/r2_00002.parquet +3 -0
  11. chunk_records/r3_00000.parquet +3 -0
  12. chunk_records/r3_00001.parquet +3 -0
  13. chunk_records/r3_00002.parquet +3 -0
  14. chunk_records/r4_00000.parquet +3 -0
  15. chunk_records/r4_00001.parquet +3 -0
  16. chunk_records/r4_00002.parquet +3 -0
  17. chunk_records/r5_00000.parquet +3 -0
  18. chunk_records/r5_00001.parquet +3 -0
  19. chunk_records/r5_00002.parquet +3 -0
  20. chunk_records/r6_00000.parquet +3 -0
  21. chunk_records/r6_00001.parquet +3 -0
  22. chunk_records/r6_00002.parquet +3 -0
  23. chunk_records/r7_00000.parquet +3 -0
  24. chunk_records/r7_00001.parquet +3 -0
  25. chunk_records/r7_00002.parquet +3 -0
  26. dataset_manifest.json +266 -0
  27. question_metadata/r0_00000.parquet +3 -0
  28. question_metadata/r0_00001.parquet +3 -0
  29. question_metadata/r0_00002.parquet +3 -0
  30. question_metadata/r0_00003.parquet +3 -0
  31. question_metadata/r0_00004.parquet +3 -0
  32. question_metadata/r0_00005.parquet +3 -0
  33. question_metadata/r0_00006.parquet +3 -0
  34. question_metadata/r0_00007.parquet +3 -0
  35. question_metadata/r0_00008.parquet +3 -0
  36. question_metadata/r0_00009.parquet +3 -0
  37. question_metadata/r0_00010.parquet +3 -0
  38. question_metadata/r0_00011.parquet +3 -0
  39. question_metadata/r0_00012.parquet +3 -0
  40. question_metadata/r0_00013.parquet +3 -0
  41. question_metadata/r0_00014.parquet +3 -0
  42. question_metadata/r0_00015.parquet +3 -0
  43. question_metadata/r0_00016.parquet +3 -0
  44. question_metadata/r0_00017.parquet +3 -0
  45. question_metadata/r0_00018.parquet +3 -0
README.md ADDED
@@ -0,0 +1,115 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - vector-database
4
+ - embeddings
5
+ - parquet
6
+ - qdrant
7
+ - stackoverflow
8
+ - question-answering
9
+ pretty_name: StackOverflow Vector Dataset - Shell
10
+ license: cc-by-sa-4.0
11
+ size_categories:
12
+ - 1M<n<10M
13
+ ---
14
+
15
+ # Shell StackOverflow Vector Dataset Datasheet
16
+
17
+ ## 1. What This Dataset Is
18
+
19
+ This dataset is the Shell-specific vector shard of the Stack2Graph StackOverflow retrieval corpus.
20
+ Each Hugging Face dataset repository contains exactly one language dataset.
21
+
22
+ It is optimized for dense+sparse retrieval, Qdrant restoration, and embedding-based RAG experiments.
23
+
24
+ It is used in the Stack2Graph project as the vector counterpart to the language-scoped RDF knowledge graph shards.
25
+
26
+ See the Stack2Graph repository for more details:
27
+ [https://github.com/tha-atlas/Stack2Graph](https://github.com/tha-atlas/Stack2Graph)
28
+
29
+ ## 2. Repository Layout
30
+
31
+ ```text
32
+ dataset_manifest.json
33
+ question_metadata_*.parquet
34
+ chunk_records_*.parquet
35
+ question_records_*.parquet
36
+ ```
37
+
38
+ - `dataset_manifest.json`: language-scoped manifest for this dataset shard.
39
+ - `question_metadata_*.parquet`: per-question metadata and retrieval bookkeeping.
40
+ - `chunk_records_*.parquet`: chunk-level vector rows when parent-child indexing is enabled.
41
+ - `question_records_*.parquet`: question-level vector rows when chunking is disabled or exported alongside chunk data.
42
+
43
+ ## 3. Data Model And Coverage
44
+
45
+ The dataset is derived from Stack Overflow questions selected for the Shell programming language.
46
+ It contains the structured records needed to rebuild the Stack2Graph Qdrant collection for that language.
47
+
48
+ Coverage scope:
49
+
50
+ - records are retained when they match the Stack2Graph supported language-tag set
51
+ - this repository contains only the Shell shard
52
+ - the archive may contain both metadata-only and retrieval-ready vector rows depending on the export mode
53
+
54
+ ## 4. Recommended Preprocessing
55
+
56
+ 1. Read `dataset_manifest.json` first and use it as the source of truth for included Parquet files.
57
+ 2. Load all Parquet shards for this repository into your vector indexing pipeline.
58
+ 3. Rebuild or restore the Qdrant collection `stackoverflow_shell_vector`.
59
+ 4. Preserve attribution and license metadata during downstream export.
60
+
61
+ ## 5. Automatic Download And Vector DB Setup
62
+
63
+ You do not need to regenerate embeddings from GraphDB to use this dataset.
64
+
65
+ In the Stack2Graph repository, you can use the automation script
66
+ `python -m experiment.load_hf_datasets_into_services --skip-kg` to download dataset artifacts
67
+ and prepare the vector database service state automatically.
68
+
69
+ Typical workflow:
70
+
71
+ 1. Clone and configure Stack2Graph (`.env` with HF token and service paths).
72
+ 1. Clone and configure Stack2Graph (`.env` with HF token and service paths).
73
+ 1. Start required local services:
74
+
75
+ ```bash
76
+ docker compose up -d
77
+ ```
78
+
79
+ 1. Run the loader script:
80
+
81
+ ```bash
82
+ python -m experiment.load_hf_datasets_into_services --skip-kg
83
+ ```
84
+
85
+ For manual usage without automation, directly ingest the listed Parquet files into your vector database.
86
+
87
+ ## 6. Quality Notes And Caveats
88
+
89
+ - A Stack Overflow question may belong to multiple language shards when tagged with multiple languages.
90
+ - Embeddings and sparse representations depend on the configured export pipeline and model versions.
91
+ - As with community-generated data, content may include noise, bias, and temporal drift.
92
+
93
+ ## 7. Intended Use
94
+
95
+ - semantic retrieval and reranking
96
+ - RAG and hybrid retriever experiments
97
+ - vector database benchmarking and diagnostics
98
+ - language-scoped developer tooling research
99
+
100
+ ## 8. Limitations
101
+
102
+ - Not a complete mirror of all Stack Overflow content.
103
+ - Not all export modes include the same row types or chunk layouts.
104
+ - Best used together with the Stack2Graph retrieval pipeline and Qdrant-compatible tooling.
105
+
106
+ ## 9. Licensing And Attribution
107
+
108
+ This dataset inherits Stack Overflow source licensing and attribution requirements.
109
+ Ensure compliant attribution and redistribution practices in all derived artifacts.
110
+
111
+ ## 10. Suggested Citation
112
+
113
+ If you use this dataset, cite the Stack2Graph work:
114
+
115
+ - Stack2Graph: A Structured Knowledge Representation of Stack Overflow Data for Retrieval-based Question Answering
chunk_records/r0_00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c8fb039d7f931d3968cde64326786e2f53191be05a5a6d442436cfe1b8206f5
3
+ size 30384143
chunk_records/r0_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e960336155b516cdc96609bef96e1a87ff207dbc3bd3a44cc34d7722e2c8073a
3
+ size 32620125
chunk_records/r0_00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:de972eb822a41b1c2522be9f6f00a49661635ceab710921f9b28df1776f4b1b5
3
+ size 22420366
chunk_records/r1_00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e9d24d434d6c2f05d951ccfc786c283fadf7469326534ade79f9a12f3763142b
3
+ size 30366595
chunk_records/r1_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ddb8e7fc0e6d540df6cfa7136417609c90c68216d7a446a8463ed9f0c50f459d
3
+ size 32566921
chunk_records/r1_00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:163756b46c0c6567e62dbd953b5018188c05faa0b1170affd4ca4544024b0b65
3
+ size 22418407
chunk_records/r2_00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:126182c7118941eb98cb4f7d8e7fbdfa59a2997c140ee43f11d32a7bf874968d
3
+ size 30402495
chunk_records/r2_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c0261ebb5dbee2060bced81c72eda0539a360ae53930f5f9be138d18a5d93896
3
+ size 32624824
chunk_records/r2_00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f53d1c167672b96c7fa67c166fa1413dfe535e033cbc5a151f2210fc6f0e96c
3
+ size 22405952
chunk_records/r3_00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:be08edc5c5f91564f5880646297ad2ee12318411b17f2d6b15cf06f247fe2ac0
3
+ size 30365927
chunk_records/r3_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1d5446903663ac69c17347ef5b2e50a4996ebd886ed672e980a1e0d2026af48a
3
+ size 32609372
chunk_records/r3_00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eb153ae9ea9256353ffefa0558043a522c8ccef35a9e39c9294ea0a656b5cf92
3
+ size 22396050
chunk_records/r4_00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dcd6f3be33961f2231134a003ea4de784df4dc5dbff7eb4571875c25bd95bdca
3
+ size 30348023
chunk_records/r4_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:de5ddded162d1e07b79b3030a87d7832419520176d588c12aba8396db5a1d85d
3
+ size 32595097
chunk_records/r4_00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:868aaca1ffcea6cbc0ac74300323b0ef960f1d8c5447dedf92f04d28fd677449
3
+ size 22371828
chunk_records/r5_00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:45b382af83534afcb895afa6e998903b853939d24771d6f1e0ae338adfafb9d3
3
+ size 30348902
chunk_records/r5_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:57cb36101241f0a540d7bf2bde2221156dd281b706faf9a169d237101cdc4aca
3
+ size 32515139
chunk_records/r5_00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:41ad827d4dece4a399a5f2ff4b9e0af60e1428d626c253829d05bcb139a52dc9
3
+ size 22406760
chunk_records/r6_00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b8da6f6bf1ee952e02acc8b8eeb74c62331d9ff33f778846fe66a96c95da4218
3
+ size 30348886
chunk_records/r6_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6a3765e75803877cd92cbb5265a8b13346c0c303a5203c1d521bc797fc5fe8c1
3
+ size 32578450
chunk_records/r6_00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7048aabf33523f85ee8b353535051be7c353f9fba89ab287a8cd4528f2335131
3
+ size 22419796
chunk_records/r7_00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c632376e22928c27098bc71915f4c984588c81bad84cafeb02db97a69fa614b7
3
+ size 30380665
chunk_records/r7_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f2abf152e4b9d0490223ef1e9aa75a03b9375661b8cd12f979df31e60cf342ec
3
+ size 32593708
chunk_records/r7_00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:36ba6a568ae18b5ea84a4cca812fbfe8918e4fb7edefe9164a4fb754fddd33f5
3
+ size 22356411
dataset_manifest.json ADDED
@@ -0,0 +1,266 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "file_count": 43,
3
+ "files": [
4
+ {
5
+ "category": "chunk_records",
6
+ "language": "shell",
7
+ "relative_path": "chunk_records/r0_00000.parquet",
8
+ "rows": 5000
9
+ },
10
+ {
11
+ "category": "chunk_records",
12
+ "language": "shell",
13
+ "relative_path": "chunk_records/r0_00001.parquet",
14
+ "rows": 5000
15
+ },
16
+ {
17
+ "category": "chunk_records",
18
+ "language": "shell",
19
+ "relative_path": "chunk_records/r0_00002.parquet",
20
+ "rows": 3112
21
+ },
22
+ {
23
+ "category": "chunk_records",
24
+ "language": "shell",
25
+ "relative_path": "chunk_records/r1_00000.parquet",
26
+ "rows": 5000
27
+ },
28
+ {
29
+ "category": "chunk_records",
30
+ "language": "shell",
31
+ "relative_path": "chunk_records/r1_00001.parquet",
32
+ "rows": 5000
33
+ },
34
+ {
35
+ "category": "chunk_records",
36
+ "language": "shell",
37
+ "relative_path": "chunk_records/r1_00002.parquet",
38
+ "rows": 3112
39
+ },
40
+ {
41
+ "category": "chunk_records",
42
+ "language": "shell",
43
+ "relative_path": "chunk_records/r2_00000.parquet",
44
+ "rows": 5000
45
+ },
46
+ {
47
+ "category": "chunk_records",
48
+ "language": "shell",
49
+ "relative_path": "chunk_records/r2_00001.parquet",
50
+ "rows": 5000
51
+ },
52
+ {
53
+ "category": "chunk_records",
54
+ "language": "shell",
55
+ "relative_path": "chunk_records/r2_00002.parquet",
56
+ "rows": 3112
57
+ },
58
+ {
59
+ "category": "chunk_records",
60
+ "language": "shell",
61
+ "relative_path": "chunk_records/r3_00000.parquet",
62
+ "rows": 5000
63
+ },
64
+ {
65
+ "category": "chunk_records",
66
+ "language": "shell",
67
+ "relative_path": "chunk_records/r3_00001.parquet",
68
+ "rows": 5000
69
+ },
70
+ {
71
+ "category": "chunk_records",
72
+ "language": "shell",
73
+ "relative_path": "chunk_records/r3_00002.parquet",
74
+ "rows": 3112
75
+ },
76
+ {
77
+ "category": "chunk_records",
78
+ "language": "shell",
79
+ "relative_path": "chunk_records/r4_00000.parquet",
80
+ "rows": 5000
81
+ },
82
+ {
83
+ "category": "chunk_records",
84
+ "language": "shell",
85
+ "relative_path": "chunk_records/r4_00001.parquet",
86
+ "rows": 5000
87
+ },
88
+ {
89
+ "category": "chunk_records",
90
+ "language": "shell",
91
+ "relative_path": "chunk_records/r4_00002.parquet",
92
+ "rows": 3112
93
+ },
94
+ {
95
+ "category": "chunk_records",
96
+ "language": "shell",
97
+ "relative_path": "chunk_records/r5_00000.parquet",
98
+ "rows": 5000
99
+ },
100
+ {
101
+ "category": "chunk_records",
102
+ "language": "shell",
103
+ "relative_path": "chunk_records/r5_00001.parquet",
104
+ "rows": 5000
105
+ },
106
+ {
107
+ "category": "chunk_records",
108
+ "language": "shell",
109
+ "relative_path": "chunk_records/r5_00002.parquet",
110
+ "rows": 3112
111
+ },
112
+ {
113
+ "category": "chunk_records",
114
+ "language": "shell",
115
+ "relative_path": "chunk_records/r6_00000.parquet",
116
+ "rows": 5000
117
+ },
118
+ {
119
+ "category": "chunk_records",
120
+ "language": "shell",
121
+ "relative_path": "chunk_records/r6_00001.parquet",
122
+ "rows": 5000
123
+ },
124
+ {
125
+ "category": "chunk_records",
126
+ "language": "shell",
127
+ "relative_path": "chunk_records/r6_00002.parquet",
128
+ "rows": 3111
129
+ },
130
+ {
131
+ "category": "chunk_records",
132
+ "language": "shell",
133
+ "relative_path": "chunk_records/r7_00000.parquet",
134
+ "rows": 5000
135
+ },
136
+ {
137
+ "category": "chunk_records",
138
+ "language": "shell",
139
+ "relative_path": "chunk_records/r7_00001.parquet",
140
+ "rows": 5000
141
+ },
142
+ {
143
+ "category": "chunk_records",
144
+ "language": "shell",
145
+ "relative_path": "chunk_records/r7_00002.parquet",
146
+ "rows": 3111
147
+ },
148
+ {
149
+ "category": "question_metadata",
150
+ "language": "shell",
151
+ "relative_path": "question_metadata/r0_00000.parquet",
152
+ "rows": 5000
153
+ },
154
+ {
155
+ "category": "question_metadata",
156
+ "language": "shell",
157
+ "relative_path": "question_metadata/r0_00001.parquet",
158
+ "rows": 5000
159
+ },
160
+ {
161
+ "category": "question_metadata",
162
+ "language": "shell",
163
+ "relative_path": "question_metadata/r0_00002.parquet",
164
+ "rows": 5000
165
+ },
166
+ {
167
+ "category": "question_metadata",
168
+ "language": "shell",
169
+ "relative_path": "question_metadata/r0_00003.parquet",
170
+ "rows": 5000
171
+ },
172
+ {
173
+ "category": "question_metadata",
174
+ "language": "shell",
175
+ "relative_path": "question_metadata/r0_00004.parquet",
176
+ "rows": 5000
177
+ },
178
+ {
179
+ "category": "question_metadata",
180
+ "language": "shell",
181
+ "relative_path": "question_metadata/r0_00005.parquet",
182
+ "rows": 5000
183
+ },
184
+ {
185
+ "category": "question_metadata",
186
+ "language": "shell",
187
+ "relative_path": "question_metadata/r0_00006.parquet",
188
+ "rows": 5000
189
+ },
190
+ {
191
+ "category": "question_metadata",
192
+ "language": "shell",
193
+ "relative_path": "question_metadata/r0_00007.parquet",
194
+ "rows": 5000
195
+ },
196
+ {
197
+ "category": "question_metadata",
198
+ "language": "shell",
199
+ "relative_path": "question_metadata/r0_00008.parquet",
200
+ "rows": 5000
201
+ },
202
+ {
203
+ "category": "question_metadata",
204
+ "language": "shell",
205
+ "relative_path": "question_metadata/r0_00009.parquet",
206
+ "rows": 5000
207
+ },
208
+ {
209
+ "category": "question_metadata",
210
+ "language": "shell",
211
+ "relative_path": "question_metadata/r0_00010.parquet",
212
+ "rows": 5000
213
+ },
214
+ {
215
+ "category": "question_metadata",
216
+ "language": "shell",
217
+ "relative_path": "question_metadata/r0_00011.parquet",
218
+ "rows": 5000
219
+ },
220
+ {
221
+ "category": "question_metadata",
222
+ "language": "shell",
223
+ "relative_path": "question_metadata/r0_00012.parquet",
224
+ "rows": 5000
225
+ },
226
+ {
227
+ "category": "question_metadata",
228
+ "language": "shell",
229
+ "relative_path": "question_metadata/r0_00013.parquet",
230
+ "rows": 5000
231
+ },
232
+ {
233
+ "category": "question_metadata",
234
+ "language": "shell",
235
+ "relative_path": "question_metadata/r0_00014.parquet",
236
+ "rows": 5000
237
+ },
238
+ {
239
+ "category": "question_metadata",
240
+ "language": "shell",
241
+ "relative_path": "question_metadata/r0_00015.parquet",
242
+ "rows": 5000
243
+ },
244
+ {
245
+ "category": "question_metadata",
246
+ "language": "shell",
247
+ "relative_path": "question_metadata/r0_00016.parquet",
248
+ "rows": 5000
249
+ },
250
+ {
251
+ "category": "question_metadata",
252
+ "language": "shell",
253
+ "relative_path": "question_metadata/r0_00017.parquet",
254
+ "rows": 5000
255
+ },
256
+ {
257
+ "category": "question_metadata",
258
+ "language": "shell",
259
+ "relative_path": "question_metadata/r0_00018.parquet",
260
+ "rows": 3050
261
+ }
262
+ ],
263
+ "language": "shell",
264
+ "source": "vector_dataset_language_folder",
265
+ "total_rows": 197944
266
+ }
question_metadata/r0_00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ff752a04bd3d193c849e678352c1d7b2aa3ecbe1172a425481ce4cbb976b24ae
3
+ size 5934163
question_metadata/r0_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cdca5916bf790df54e84291db6486daf422a954effc059677c137a7227b830f8
3
+ size 5881512
question_metadata/r0_00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c50823ef4c3a07520790456a97b9e453933b7f8ae02ce1bd8d70274abe2f233e
3
+ size 6075620
question_metadata/r0_00003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:04eac25cf478823c9ccd058b8c1b0b99073e2671432185e37ec92a5e57e75a5c
3
+ size 6334559
question_metadata/r0_00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5fb7d014454446261b47da818077adefc99623d9846c717de0fced0e8f621261
3
+ size 6492727
question_metadata/r0_00005.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c3c3f40c4da11bbd8824da4fb9829f716a64ed6e8a5aee8f89e23a45ae1003c
3
+ size 6721736
question_metadata/r0_00006.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fef522084aa8e238786535e11f9d05bc721d8a13e818c1469f5d5b238e5c3d1a
3
+ size 6231605
question_metadata/r0_00007.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:841525bb4cd2ac7dbfa385fe1b96d594d2b5e14254124de9d58cd192b148b6ab
3
+ size 6692126
question_metadata/r0_00008.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:57f21ede691b4593979913229a5a1b6ae3c60fd06e929365439d40f6543d8b8c
3
+ size 6393732
question_metadata/r0_00009.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:02c1a797c76795de0ab3dd9dc410a55e737a22b5aad28ee452d5d3ea771cee8e
3
+ size 6350443
question_metadata/r0_00010.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7af976723f0d1f4383788d38ee6644e5a34d63558f88436e71fd7198df4da9bd
3
+ size 7103351
question_metadata/r0_00011.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bb569722c4e36cc444c582fdb097d03ae925ccfe5f528ad3a527d7e85ab98545
3
+ size 6478716
question_metadata/r0_00012.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:29bb43a443304dd97bd41057d1133e1aefd791cf7a273d2902ce5f136e6d918d
3
+ size 6288385
question_metadata/r0_00013.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cc35efdf7519601423c66d54f68269f322f91dfe45fd64f8d818a53b418b041c
3
+ size 6423482
question_metadata/r0_00014.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2e2cd4e63b8abc72c4431a33004438fca0d0d778182c767144f1b5105b28d353
3
+ size 6363269
question_metadata/r0_00015.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0bc26ff8cf280937d3708ba4489d14fe88c6f269cb9281dee18b833d290349b3
3
+ size 6484976
question_metadata/r0_00016.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1249d6705eb8a382b61379822fb5d9cd318e567b882c389e52e20cdcfa626578
3
+ size 6644145
question_metadata/r0_00017.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0057c64e9ca897c13a2646156bfa2761a619c346e2c6bc540e62cb3dac4da722
3
+ size 6755535
question_metadata/r0_00018.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d60473fc081f3a64791afb0a3b0260b82147b0227a39403e1683bfa1cb741c79
3
+ size 4099223