Mo7art commited on
Commit
4aa9f24
·
verified ·
1 Parent(s): a0d4510

Add files using upload-large-folder tool

Browse files
Files changed (50) hide show
  1. README.md +115 -0
  2. chunk_records/r0_00001.parquet +3 -0
  3. chunk_records/r0_00004.parquet +3 -0
  4. chunk_records/r0_00009.parquet +3 -0
  5. chunk_records/r0_00010.parquet +3 -0
  6. chunk_records/r1_00001.parquet +3 -0
  7. chunk_records/r1_00002.parquet +3 -0
  8. chunk_records/r1_00004.parquet +3 -0
  9. chunk_records/r1_00007.parquet +3 -0
  10. chunk_records/r1_00008.parquet +3 -0
  11. chunk_records/r1_00009.parquet +3 -0
  12. chunk_records/r1_00010.parquet +3 -0
  13. chunk_records/r2_00000.parquet +3 -0
  14. chunk_records/r2_00001.parquet +3 -0
  15. chunk_records/r2_00003.parquet +3 -0
  16. chunk_records/r2_00004.parquet +3 -0
  17. chunk_records/r2_00005.parquet +3 -0
  18. chunk_records/r2_00006.parquet +3 -0
  19. chunk_records/r2_00007.parquet +3 -0
  20. chunk_records/r2_00010.parquet +3 -0
  21. chunk_records/r3_00001.parquet +3 -0
  22. chunk_records/r3_00002.parquet +3 -0
  23. chunk_records/r3_00004.parquet +3 -0
  24. chunk_records/r3_00007.parquet +3 -0
  25. chunk_records/r3_00010.parquet +3 -0
  26. chunk_records/r4_00002.parquet +3 -0
  27. chunk_records/r4_00003.parquet +3 -0
  28. chunk_records/r4_00004.parquet +3 -0
  29. chunk_records/r4_00006.parquet +3 -0
  30. chunk_records/r4_00007.parquet +3 -0
  31. chunk_records/r5_00000.parquet +3 -0
  32. chunk_records/r5_00001.parquet +3 -0
  33. chunk_records/r5_00002.parquet +3 -0
  34. chunk_records/r5_00003.parquet +3 -0
  35. chunk_records/r5_00004.parquet +3 -0
  36. chunk_records/r5_00007.parquet +3 -0
  37. chunk_records/r5_00008.parquet +3 -0
  38. chunk_records/r5_00009.parquet +3 -0
  39. chunk_records/r5_00010.parquet +3 -0
  40. chunk_records/r6_00003.parquet +3 -0
  41. chunk_records/r6_00004.parquet +3 -0
  42. chunk_records/r6_00005.parquet +3 -0
  43. chunk_records/r6_00008.parquet +3 -0
  44. chunk_records/r6_00009.parquet +3 -0
  45. chunk_records/r6_00010.parquet +3 -0
  46. chunk_records/r7_00002.parquet +3 -0
  47. chunk_records/r7_00003.parquet +3 -0
  48. chunk_records/r7_00004.parquet +3 -0
  49. chunk_records/r7_00010.parquet +3 -0
  50. dataset_manifest.json +944 -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 - Swift
10
+ license: cc-by-sa-4.0
11
+ size_categories:
12
+ - 1M<n<10M
13
+ ---
14
+
15
+ # Swift StackOverflow Vector Dataset Datasheet
16
+
17
+ ## 1. What This Dataset Is
18
+
19
+ This dataset is the Swift-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 Swift 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 Swift 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_swift_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_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4f4ee8ccce2ddf4f2c636178ac2f49d5d215e56da838f82c1e1641fa3b6916e
3
+ size 31201298
chunk_records/r0_00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0fe623f247ee410072cf204584731f58bd182ff3a74e259ca4e98326490290bb
3
+ size 33554987
chunk_records/r0_00009.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:67af4a982a1d1eaf4289114a0cb1d055c4d4d35b3b7172806eb56040fbe09892
3
+ size 37913615
chunk_records/r0_00010.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:11ff93c64c657d7a05cb532153714916bfc33db74916b60ac360c4b02dfdeae6
3
+ size 19357425
chunk_records/r1_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:27441e72ab977d5330056a5072f3e6b5c07ec8e08da2635200c423d885c850d5
3
+ size 31188271
chunk_records/r1_00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c8080c2dbbb03c77b7e0a4b9bd43f660c80b62bd2e7be084815561c974947f3e
3
+ size 31963960
chunk_records/r1_00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4ee38c07d0baf35dddb43df4d70c6d7e4caeed1d176603201cbce5b0ae801be3
3
+ size 33588008
chunk_records/r1_00007.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3a1c86f6853a60d083f0cda52a283fbce49a15c546bf634855efcbf4be52b874
3
+ size 36301434
chunk_records/r1_00008.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d516c0cbba8ed0104891a9eaf1c23a579f9e225c02bcea0522b1b09f136015d
3
+ size 37127044
chunk_records/r1_00009.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1723d6be44767f3e7c86505007647b922cc4c465f5313468ae74992bdd01a734
3
+ size 37974940
chunk_records/r1_00010.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:42e27638c04b8fdd53b45d94cdb118f3fb5d7ac28b97f4aa9acaec13ecb34eae
3
+ size 19363228
chunk_records/r2_00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1a440565a527a46445d3845275708602d36c52b82624b008f9125f8ca931e2ea
3
+ size 29987796
chunk_records/r2_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1a83fe2375ea5a3af3cb8cae920706267f6012747cc5c8c8dce57870ff5ad8ae
3
+ size 31188808
chunk_records/r2_00003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6652a9ed5ac0f36e45fe46c02d5d9fcb370b6a0da1c5bca43982adc66a395046
3
+ size 32714042
chunk_records/r2_00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d722a04bdfa6abfadeafc6e147f93448f7a4a588f8f1562f0c88e3eed1fc29cc
3
+ size 33532627
chunk_records/r2_00005.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df0835b42680f6be534b7ca1ec9126c894f7dcf5e08a0f4bf91e5e534cdb3816
3
+ size 34413718
chunk_records/r2_00006.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b8a108b3ba7e3d58874439eea865ca4e6d5670e94c728a2c316ff3c9e6b7316c
3
+ size 35376739
chunk_records/r2_00007.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dffd670fafa5a398a1ab7552dea456de0c16b122fa929289b9f07752f9b8f328
3
+ size 36286306
chunk_records/r2_00010.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71febdc1267b9bb79a27d3d55a1e63fe3bd8088be7e2c00459cf158cbca22f3d
3
+ size 19361423
chunk_records/r3_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b5af3b552d7cfc553341a81cf66980446cb0bcbad539df85a26974e21c8fb82
3
+ size 31161148
chunk_records/r3_00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eb8feecc69cbf79aa0c25d20e7c0a095e941c8071e1da82bc70f52361904f36d
3
+ size 31969262
chunk_records/r3_00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b99a9cb9840282b414e37b0461a77e1012bc10574c54d0dc4be2090a34bd626f
3
+ size 33583948
chunk_records/r3_00007.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:44a6d4e7e57f8616de9791bd63277ce29c22db5be558f5c806eba2e303d00212
3
+ size 36287722
chunk_records/r3_00010.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8a474ab01c8aa0f7d95c27cf24905c4e5261133d279598b3133537e834ed77ae
3
+ size 19361626
chunk_records/r4_00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:819abe069702600e5b9f6b15e194136eb9fa2ccb8813231757da12eed37f1c0b
3
+ size 31899122
chunk_records/r4_00003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dcc28a3c95704a565d7ba9e35e34b82015e5d807c6b51a28cee3da8fd7409ac9
3
+ size 32705699
chunk_records/r4_00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2edc2a45a0378502c604388e5a74575a7795a0c6faea0bed74e9d8d8a467c5e1
3
+ size 33539032
chunk_records/r4_00006.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9f621b633612080f98f7af1884c9936ea93425e60d0fabdd19a65a6c3c0f1807
3
+ size 35388218
chunk_records/r4_00007.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:20cd389077e885728bb2134fb7420f6c437ccf9665537e67cd6470c8542761f1
3
+ size 36229663
chunk_records/r5_00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a29b9e7e431887e2aaecbbb24081c3256014c96cfdaa4951f85da9e818ad5d3b
3
+ size 29997450
chunk_records/r5_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:724cde97d0ff07fa4515a69b759d2b47cd59246718cb3a545cad72dfce8b543c
3
+ size 31188875
chunk_records/r5_00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:509924deaf7f666687a917bdfce7f12fa50c686dbb743177b243a50babb82096
3
+ size 31945549
chunk_records/r5_00003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c2e75c1dafd0892a35b5ecc76fbd35986a415e183ee2397fd504d332ccd4a06
3
+ size 32679502
chunk_records/r5_00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a6092d19137c2518e83bd767527fbd2f9b495a10a79aac3177f16ed5f73b7edc
3
+ size 33529893
chunk_records/r5_00007.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f87ea56aa0403312fc85586027d0caa5c57052b42f068016045c89fbf15db34
3
+ size 36234077
chunk_records/r5_00008.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:47d296a78fc009bfe512af732ee1474b59f6df24d2e72b9151d5635b992005e7
3
+ size 37136334
chunk_records/r5_00009.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7d60bce8604f5eae4f1fb1f936b239f9271d852205732961563070c14bc34846
3
+ size 37970358
chunk_records/r5_00010.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:132322a2e183b95fbf55a966e140cc1941a9d7d3543bd380faaae09e8f4a3c22
3
+ size 19350076
chunk_records/r6_00003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e5a9b61dfc638244f44113760d8c7272004e1a2052df47a7d14c9067af507a0a
3
+ size 32744877
chunk_records/r6_00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fe65c76fdaf8f392e41aa2b0e501cddb8fba7dc7ae6a3eda195206fe72729b37
3
+ size 33560757
chunk_records/r6_00005.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8019da6ce4b81269301bffd9930deff7febd2a9a0b717b10227d450fc8cbd139
3
+ size 34447736
chunk_records/r6_00008.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cae818771b86b71ddacf2a8b827f32236fde819654963a17acfd5538fac6b8b8
3
+ size 37146825
chunk_records/r6_00009.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d69cf5515feff1c707b4f805d981838e83e4fe8671577dc93f73b2e08f9916e2
3
+ size 37935771
chunk_records/r6_00010.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:36e98916504dd4734b6202fc2358c81ad08755f96b6005c4a569b4bea520874e
3
+ size 19351801
chunk_records/r7_00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:839ba082e48511c750f183be0486183689e236eab07c1ebe941033d6a1d6398b
3
+ size 31957499
chunk_records/r7_00003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:223bd034c6a5c414199c35103cc4f73e2e034a537ea6485fbfd5931a87dfee2a
3
+ size 32715274
chunk_records/r7_00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4a1122d58aafab96555207f85da7e449c8946e44be84c4473003a2ba503d2493
3
+ size 33531125
chunk_records/r7_00010.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:713dffc3e2a3556afd48b109f5c8d2a36d997b6589861c84a916a240640c1d3c
3
+ size 19320165
dataset_manifest.json ADDED
@@ -0,0 +1,944 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "file_count": 156,
3
+ "files": [
4
+ {
5
+ "category": "chunk_records",
6
+ "language": "swift",
7
+ "relative_path": "chunk_records/r0_00000.parquet",
8
+ "rows": 5000
9
+ },
10
+ {
11
+ "category": "chunk_records",
12
+ "language": "swift",
13
+ "relative_path": "chunk_records/r0_00001.parquet",
14
+ "rows": 5000
15
+ },
16
+ {
17
+ "category": "chunk_records",
18
+ "language": "swift",
19
+ "relative_path": "chunk_records/r0_00002.parquet",
20
+ "rows": 5000
21
+ },
22
+ {
23
+ "category": "chunk_records",
24
+ "language": "swift",
25
+ "relative_path": "chunk_records/r0_00003.parquet",
26
+ "rows": 5000
27
+ },
28
+ {
29
+ "category": "chunk_records",
30
+ "language": "swift",
31
+ "relative_path": "chunk_records/r0_00004.parquet",
32
+ "rows": 5000
33
+ },
34
+ {
35
+ "category": "chunk_records",
36
+ "language": "swift",
37
+ "relative_path": "chunk_records/r0_00005.parquet",
38
+ "rows": 5000
39
+ },
40
+ {
41
+ "category": "chunk_records",
42
+ "language": "swift",
43
+ "relative_path": "chunk_records/r0_00006.parquet",
44
+ "rows": 5000
45
+ },
46
+ {
47
+ "category": "chunk_records",
48
+ "language": "swift",
49
+ "relative_path": "chunk_records/r0_00007.parquet",
50
+ "rows": 5000
51
+ },
52
+ {
53
+ "category": "chunk_records",
54
+ "language": "swift",
55
+ "relative_path": "chunk_records/r0_00008.parquet",
56
+ "rows": 5000
57
+ },
58
+ {
59
+ "category": "chunk_records",
60
+ "language": "swift",
61
+ "relative_path": "chunk_records/r0_00009.parquet",
62
+ "rows": 5000
63
+ },
64
+ {
65
+ "category": "chunk_records",
66
+ "language": "swift",
67
+ "relative_path": "chunk_records/r0_00010.parquet",
68
+ "rows": 2536
69
+ },
70
+ {
71
+ "category": "chunk_records",
72
+ "language": "swift",
73
+ "relative_path": "chunk_records/r1_00000.parquet",
74
+ "rows": 5000
75
+ },
76
+ {
77
+ "category": "chunk_records",
78
+ "language": "swift",
79
+ "relative_path": "chunk_records/r1_00001.parquet",
80
+ "rows": 5000
81
+ },
82
+ {
83
+ "category": "chunk_records",
84
+ "language": "swift",
85
+ "relative_path": "chunk_records/r1_00002.parquet",
86
+ "rows": 5000
87
+ },
88
+ {
89
+ "category": "chunk_records",
90
+ "language": "swift",
91
+ "relative_path": "chunk_records/r1_00003.parquet",
92
+ "rows": 5000
93
+ },
94
+ {
95
+ "category": "chunk_records",
96
+ "language": "swift",
97
+ "relative_path": "chunk_records/r1_00004.parquet",
98
+ "rows": 5000
99
+ },
100
+ {
101
+ "category": "chunk_records",
102
+ "language": "swift",
103
+ "relative_path": "chunk_records/r1_00005.parquet",
104
+ "rows": 5000
105
+ },
106
+ {
107
+ "category": "chunk_records",
108
+ "language": "swift",
109
+ "relative_path": "chunk_records/r1_00006.parquet",
110
+ "rows": 5000
111
+ },
112
+ {
113
+ "category": "chunk_records",
114
+ "language": "swift",
115
+ "relative_path": "chunk_records/r1_00007.parquet",
116
+ "rows": 5000
117
+ },
118
+ {
119
+ "category": "chunk_records",
120
+ "language": "swift",
121
+ "relative_path": "chunk_records/r1_00008.parquet",
122
+ "rows": 5000
123
+ },
124
+ {
125
+ "category": "chunk_records",
126
+ "language": "swift",
127
+ "relative_path": "chunk_records/r1_00009.parquet",
128
+ "rows": 5000
129
+ },
130
+ {
131
+ "category": "chunk_records",
132
+ "language": "swift",
133
+ "relative_path": "chunk_records/r1_00010.parquet",
134
+ "rows": 2536
135
+ },
136
+ {
137
+ "category": "chunk_records",
138
+ "language": "swift",
139
+ "relative_path": "chunk_records/r2_00000.parquet",
140
+ "rows": 5000
141
+ },
142
+ {
143
+ "category": "chunk_records",
144
+ "language": "swift",
145
+ "relative_path": "chunk_records/r2_00001.parquet",
146
+ "rows": 5000
147
+ },
148
+ {
149
+ "category": "chunk_records",
150
+ "language": "swift",
151
+ "relative_path": "chunk_records/r2_00002.parquet",
152
+ "rows": 5000
153
+ },
154
+ {
155
+ "category": "chunk_records",
156
+ "language": "swift",
157
+ "relative_path": "chunk_records/r2_00003.parquet",
158
+ "rows": 5000
159
+ },
160
+ {
161
+ "category": "chunk_records",
162
+ "language": "swift",
163
+ "relative_path": "chunk_records/r2_00004.parquet",
164
+ "rows": 5000
165
+ },
166
+ {
167
+ "category": "chunk_records",
168
+ "language": "swift",
169
+ "relative_path": "chunk_records/r2_00005.parquet",
170
+ "rows": 5000
171
+ },
172
+ {
173
+ "category": "chunk_records",
174
+ "language": "swift",
175
+ "relative_path": "chunk_records/r2_00006.parquet",
176
+ "rows": 5000
177
+ },
178
+ {
179
+ "category": "chunk_records",
180
+ "language": "swift",
181
+ "relative_path": "chunk_records/r2_00007.parquet",
182
+ "rows": 5000
183
+ },
184
+ {
185
+ "category": "chunk_records",
186
+ "language": "swift",
187
+ "relative_path": "chunk_records/r2_00008.parquet",
188
+ "rows": 5000
189
+ },
190
+ {
191
+ "category": "chunk_records",
192
+ "language": "swift",
193
+ "relative_path": "chunk_records/r2_00009.parquet",
194
+ "rows": 5000
195
+ },
196
+ {
197
+ "category": "chunk_records",
198
+ "language": "swift",
199
+ "relative_path": "chunk_records/r2_00010.parquet",
200
+ "rows": 2536
201
+ },
202
+ {
203
+ "category": "chunk_records",
204
+ "language": "swift",
205
+ "relative_path": "chunk_records/r3_00000.parquet",
206
+ "rows": 5000
207
+ },
208
+ {
209
+ "category": "chunk_records",
210
+ "language": "swift",
211
+ "relative_path": "chunk_records/r3_00001.parquet",
212
+ "rows": 5000
213
+ },
214
+ {
215
+ "category": "chunk_records",
216
+ "language": "swift",
217
+ "relative_path": "chunk_records/r3_00002.parquet",
218
+ "rows": 5000
219
+ },
220
+ {
221
+ "category": "chunk_records",
222
+ "language": "swift",
223
+ "relative_path": "chunk_records/r3_00003.parquet",
224
+ "rows": 5000
225
+ },
226
+ {
227
+ "category": "chunk_records",
228
+ "language": "swift",
229
+ "relative_path": "chunk_records/r3_00004.parquet",
230
+ "rows": 5000
231
+ },
232
+ {
233
+ "category": "chunk_records",
234
+ "language": "swift",
235
+ "relative_path": "chunk_records/r3_00005.parquet",
236
+ "rows": 5000
237
+ },
238
+ {
239
+ "category": "chunk_records",
240
+ "language": "swift",
241
+ "relative_path": "chunk_records/r3_00006.parquet",
242
+ "rows": 5000
243
+ },
244
+ {
245
+ "category": "chunk_records",
246
+ "language": "swift",
247
+ "relative_path": "chunk_records/r3_00007.parquet",
248
+ "rows": 5000
249
+ },
250
+ {
251
+ "category": "chunk_records",
252
+ "language": "swift",
253
+ "relative_path": "chunk_records/r3_00008.parquet",
254
+ "rows": 5000
255
+ },
256
+ {
257
+ "category": "chunk_records",
258
+ "language": "swift",
259
+ "relative_path": "chunk_records/r3_00009.parquet",
260
+ "rows": 5000
261
+ },
262
+ {
263
+ "category": "chunk_records",
264
+ "language": "swift",
265
+ "relative_path": "chunk_records/r3_00010.parquet",
266
+ "rows": 2536
267
+ },
268
+ {
269
+ "category": "chunk_records",
270
+ "language": "swift",
271
+ "relative_path": "chunk_records/r4_00000.parquet",
272
+ "rows": 5000
273
+ },
274
+ {
275
+ "category": "chunk_records",
276
+ "language": "swift",
277
+ "relative_path": "chunk_records/r4_00001.parquet",
278
+ "rows": 5000
279
+ },
280
+ {
281
+ "category": "chunk_records",
282
+ "language": "swift",
283
+ "relative_path": "chunk_records/r4_00002.parquet",
284
+ "rows": 5000
285
+ },
286
+ {
287
+ "category": "chunk_records",
288
+ "language": "swift",
289
+ "relative_path": "chunk_records/r4_00003.parquet",
290
+ "rows": 5000
291
+ },
292
+ {
293
+ "category": "chunk_records",
294
+ "language": "swift",
295
+ "relative_path": "chunk_records/r4_00004.parquet",
296
+ "rows": 5000
297
+ },
298
+ {
299
+ "category": "chunk_records",
300
+ "language": "swift",
301
+ "relative_path": "chunk_records/r4_00005.parquet",
302
+ "rows": 5000
303
+ },
304
+ {
305
+ "category": "chunk_records",
306
+ "language": "swift",
307
+ "relative_path": "chunk_records/r4_00006.parquet",
308
+ "rows": 5000
309
+ },
310
+ {
311
+ "category": "chunk_records",
312
+ "language": "swift",
313
+ "relative_path": "chunk_records/r4_00007.parquet",
314
+ "rows": 5000
315
+ },
316
+ {
317
+ "category": "chunk_records",
318
+ "language": "swift",
319
+ "relative_path": "chunk_records/r4_00008.parquet",
320
+ "rows": 5000
321
+ },
322
+ {
323
+ "category": "chunk_records",
324
+ "language": "swift",
325
+ "relative_path": "chunk_records/r4_00009.parquet",
326
+ "rows": 5000
327
+ },
328
+ {
329
+ "category": "chunk_records",
330
+ "language": "swift",
331
+ "relative_path": "chunk_records/r4_00010.parquet",
332
+ "rows": 2536
333
+ },
334
+ {
335
+ "category": "chunk_records",
336
+ "language": "swift",
337
+ "relative_path": "chunk_records/r5_00000.parquet",
338
+ "rows": 5000
339
+ },
340
+ {
341
+ "category": "chunk_records",
342
+ "language": "swift",
343
+ "relative_path": "chunk_records/r5_00001.parquet",
344
+ "rows": 5000
345
+ },
346
+ {
347
+ "category": "chunk_records",
348
+ "language": "swift",
349
+ "relative_path": "chunk_records/r5_00002.parquet",
350
+ "rows": 5000
351
+ },
352
+ {
353
+ "category": "chunk_records",
354
+ "language": "swift",
355
+ "relative_path": "chunk_records/r5_00003.parquet",
356
+ "rows": 5000
357
+ },
358
+ {
359
+ "category": "chunk_records",
360
+ "language": "swift",
361
+ "relative_path": "chunk_records/r5_00004.parquet",
362
+ "rows": 5000
363
+ },
364
+ {
365
+ "category": "chunk_records",
366
+ "language": "swift",
367
+ "relative_path": "chunk_records/r5_00005.parquet",
368
+ "rows": 5000
369
+ },
370
+ {
371
+ "category": "chunk_records",
372
+ "language": "swift",
373
+ "relative_path": "chunk_records/r5_00006.parquet",
374
+ "rows": 5000
375
+ },
376
+ {
377
+ "category": "chunk_records",
378
+ "language": "swift",
379
+ "relative_path": "chunk_records/r5_00007.parquet",
380
+ "rows": 5000
381
+ },
382
+ {
383
+ "category": "chunk_records",
384
+ "language": "swift",
385
+ "relative_path": "chunk_records/r5_00008.parquet",
386
+ "rows": 5000
387
+ },
388
+ {
389
+ "category": "chunk_records",
390
+ "language": "swift",
391
+ "relative_path": "chunk_records/r5_00009.parquet",
392
+ "rows": 5000
393
+ },
394
+ {
395
+ "category": "chunk_records",
396
+ "language": "swift",
397
+ "relative_path": "chunk_records/r5_00010.parquet",
398
+ "rows": 2536
399
+ },
400
+ {
401
+ "category": "chunk_records",
402
+ "language": "swift",
403
+ "relative_path": "chunk_records/r6_00000.parquet",
404
+ "rows": 5000
405
+ },
406
+ {
407
+ "category": "chunk_records",
408
+ "language": "swift",
409
+ "relative_path": "chunk_records/r6_00001.parquet",
410
+ "rows": 5000
411
+ },
412
+ {
413
+ "category": "chunk_records",
414
+ "language": "swift",
415
+ "relative_path": "chunk_records/r6_00002.parquet",
416
+ "rows": 5000
417
+ },
418
+ {
419
+ "category": "chunk_records",
420
+ "language": "swift",
421
+ "relative_path": "chunk_records/r6_00003.parquet",
422
+ "rows": 5000
423
+ },
424
+ {
425
+ "category": "chunk_records",
426
+ "language": "swift",
427
+ "relative_path": "chunk_records/r6_00004.parquet",
428
+ "rows": 5000
429
+ },
430
+ {
431
+ "category": "chunk_records",
432
+ "language": "swift",
433
+ "relative_path": "chunk_records/r6_00005.parquet",
434
+ "rows": 5000
435
+ },
436
+ {
437
+ "category": "chunk_records",
438
+ "language": "swift",
439
+ "relative_path": "chunk_records/r6_00006.parquet",
440
+ "rows": 5000
441
+ },
442
+ {
443
+ "category": "chunk_records",
444
+ "language": "swift",
445
+ "relative_path": "chunk_records/r6_00007.parquet",
446
+ "rows": 5000
447
+ },
448
+ {
449
+ "category": "chunk_records",
450
+ "language": "swift",
451
+ "relative_path": "chunk_records/r6_00008.parquet",
452
+ "rows": 5000
453
+ },
454
+ {
455
+ "category": "chunk_records",
456
+ "language": "swift",
457
+ "relative_path": "chunk_records/r6_00009.parquet",
458
+ "rows": 5000
459
+ },
460
+ {
461
+ "category": "chunk_records",
462
+ "language": "swift",
463
+ "relative_path": "chunk_records/r6_00010.parquet",
464
+ "rows": 2536
465
+ },
466
+ {
467
+ "category": "chunk_records",
468
+ "language": "swift",
469
+ "relative_path": "chunk_records/r7_00000.parquet",
470
+ "rows": 5000
471
+ },
472
+ {
473
+ "category": "chunk_records",
474
+ "language": "swift",
475
+ "relative_path": "chunk_records/r7_00001.parquet",
476
+ "rows": 5000
477
+ },
478
+ {
479
+ "category": "chunk_records",
480
+ "language": "swift",
481
+ "relative_path": "chunk_records/r7_00002.parquet",
482
+ "rows": 5000
483
+ },
484
+ {
485
+ "category": "chunk_records",
486
+ "language": "swift",
487
+ "relative_path": "chunk_records/r7_00003.parquet",
488
+ "rows": 5000
489
+ },
490
+ {
491
+ "category": "chunk_records",
492
+ "language": "swift",
493
+ "relative_path": "chunk_records/r7_00004.parquet",
494
+ "rows": 5000
495
+ },
496
+ {
497
+ "category": "chunk_records",
498
+ "language": "swift",
499
+ "relative_path": "chunk_records/r7_00005.parquet",
500
+ "rows": 5000
501
+ },
502
+ {
503
+ "category": "chunk_records",
504
+ "language": "swift",
505
+ "relative_path": "chunk_records/r7_00006.parquet",
506
+ "rows": 5000
507
+ },
508
+ {
509
+ "category": "chunk_records",
510
+ "language": "swift",
511
+ "relative_path": "chunk_records/r7_00007.parquet",
512
+ "rows": 5000
513
+ },
514
+ {
515
+ "category": "chunk_records",
516
+ "language": "swift",
517
+ "relative_path": "chunk_records/r7_00008.parquet",
518
+ "rows": 5000
519
+ },
520
+ {
521
+ "category": "chunk_records",
522
+ "language": "swift",
523
+ "relative_path": "chunk_records/r7_00009.parquet",
524
+ "rows": 5000
525
+ },
526
+ {
527
+ "category": "chunk_records",
528
+ "language": "swift",
529
+ "relative_path": "chunk_records/r7_00010.parquet",
530
+ "rows": 2535
531
+ },
532
+ {
533
+ "category": "question_metadata",
534
+ "language": "swift",
535
+ "relative_path": "question_metadata/r0_00000.parquet",
536
+ "rows": 5000
537
+ },
538
+ {
539
+ "category": "question_metadata",
540
+ "language": "swift",
541
+ "relative_path": "question_metadata/r0_00001.parquet",
542
+ "rows": 5000
543
+ },
544
+ {
545
+ "category": "question_metadata",
546
+ "language": "swift",
547
+ "relative_path": "question_metadata/r0_00002.parquet",
548
+ "rows": 5000
549
+ },
550
+ {
551
+ "category": "question_metadata",
552
+ "language": "swift",
553
+ "relative_path": "question_metadata/r0_00003.parquet",
554
+ "rows": 5000
555
+ },
556
+ {
557
+ "category": "question_metadata",
558
+ "language": "swift",
559
+ "relative_path": "question_metadata/r0_00004.parquet",
560
+ "rows": 5000
561
+ },
562
+ {
563
+ "category": "question_metadata",
564
+ "language": "swift",
565
+ "relative_path": "question_metadata/r0_00005.parquet",
566
+ "rows": 5000
567
+ },
568
+ {
569
+ "category": "question_metadata",
570
+ "language": "swift",
571
+ "relative_path": "question_metadata/r0_00006.parquet",
572
+ "rows": 5000
573
+ },
574
+ {
575
+ "category": "question_metadata",
576
+ "language": "swift",
577
+ "relative_path": "question_metadata/r0_00007.parquet",
578
+ "rows": 5000
579
+ },
580
+ {
581
+ "category": "question_metadata",
582
+ "language": "swift",
583
+ "relative_path": "question_metadata/r0_00008.parquet",
584
+ "rows": 5000
585
+ },
586
+ {
587
+ "category": "question_metadata",
588
+ "language": "swift",
589
+ "relative_path": "question_metadata/r0_00009.parquet",
590
+ "rows": 5000
591
+ },
592
+ {
593
+ "category": "question_metadata",
594
+ "language": "swift",
595
+ "relative_path": "question_metadata/r0_00010.parquet",
596
+ "rows": 5000
597
+ },
598
+ {
599
+ "category": "question_metadata",
600
+ "language": "swift",
601
+ "relative_path": "question_metadata/r0_00011.parquet",
602
+ "rows": 5000
603
+ },
604
+ {
605
+ "category": "question_metadata",
606
+ "language": "swift",
607
+ "relative_path": "question_metadata/r0_00012.parquet",
608
+ "rows": 5000
609
+ },
610
+ {
611
+ "category": "question_metadata",
612
+ "language": "swift",
613
+ "relative_path": "question_metadata/r0_00013.parquet",
614
+ "rows": 5000
615
+ },
616
+ {
617
+ "category": "question_metadata",
618
+ "language": "swift",
619
+ "relative_path": "question_metadata/r0_00014.parquet",
620
+ "rows": 5000
621
+ },
622
+ {
623
+ "category": "question_metadata",
624
+ "language": "swift",
625
+ "relative_path": "question_metadata/r0_00015.parquet",
626
+ "rows": 5000
627
+ },
628
+ {
629
+ "category": "question_metadata",
630
+ "language": "swift",
631
+ "relative_path": "question_metadata/r0_00016.parquet",
632
+ "rows": 5000
633
+ },
634
+ {
635
+ "category": "question_metadata",
636
+ "language": "swift",
637
+ "relative_path": "question_metadata/r0_00017.parquet",
638
+ "rows": 5000
639
+ },
640
+ {
641
+ "category": "question_metadata",
642
+ "language": "swift",
643
+ "relative_path": "question_metadata/r0_00018.parquet",
644
+ "rows": 5000
645
+ },
646
+ {
647
+ "category": "question_metadata",
648
+ "language": "swift",
649
+ "relative_path": "question_metadata/r0_00019.parquet",
650
+ "rows": 5000
651
+ },
652
+ {
653
+ "category": "question_metadata",
654
+ "language": "swift",
655
+ "relative_path": "question_metadata/r0_00020.parquet",
656
+ "rows": 5000
657
+ },
658
+ {
659
+ "category": "question_metadata",
660
+ "language": "swift",
661
+ "relative_path": "question_metadata/r0_00021.parquet",
662
+ "rows": 5000
663
+ },
664
+ {
665
+ "category": "question_metadata",
666
+ "language": "swift",
667
+ "relative_path": "question_metadata/r0_00022.parquet",
668
+ "rows": 5000
669
+ },
670
+ {
671
+ "category": "question_metadata",
672
+ "language": "swift",
673
+ "relative_path": "question_metadata/r0_00023.parquet",
674
+ "rows": 5000
675
+ },
676
+ {
677
+ "category": "question_metadata",
678
+ "language": "swift",
679
+ "relative_path": "question_metadata/r0_00024.parquet",
680
+ "rows": 5000
681
+ },
682
+ {
683
+ "category": "question_metadata",
684
+ "language": "swift",
685
+ "relative_path": "question_metadata/r0_00025.parquet",
686
+ "rows": 5000
687
+ },
688
+ {
689
+ "category": "question_metadata",
690
+ "language": "swift",
691
+ "relative_path": "question_metadata/r0_00026.parquet",
692
+ "rows": 5000
693
+ },
694
+ {
695
+ "category": "question_metadata",
696
+ "language": "swift",
697
+ "relative_path": "question_metadata/r0_00027.parquet",
698
+ "rows": 5000
699
+ },
700
+ {
701
+ "category": "question_metadata",
702
+ "language": "swift",
703
+ "relative_path": "question_metadata/r0_00028.parquet",
704
+ "rows": 5000
705
+ },
706
+ {
707
+ "category": "question_metadata",
708
+ "language": "swift",
709
+ "relative_path": "question_metadata/r0_00029.parquet",
710
+ "rows": 5000
711
+ },
712
+ {
713
+ "category": "question_metadata",
714
+ "language": "swift",
715
+ "relative_path": "question_metadata/r0_00030.parquet",
716
+ "rows": 5000
717
+ },
718
+ {
719
+ "category": "question_metadata",
720
+ "language": "swift",
721
+ "relative_path": "question_metadata/r0_00031.parquet",
722
+ "rows": 5000
723
+ },
724
+ {
725
+ "category": "question_metadata",
726
+ "language": "swift",
727
+ "relative_path": "question_metadata/r0_00032.parquet",
728
+ "rows": 5000
729
+ },
730
+ {
731
+ "category": "question_metadata",
732
+ "language": "swift",
733
+ "relative_path": "question_metadata/r0_00033.parquet",
734
+ "rows": 5000
735
+ },
736
+ {
737
+ "category": "question_metadata",
738
+ "language": "swift",
739
+ "relative_path": "question_metadata/r0_00034.parquet",
740
+ "rows": 5000
741
+ },
742
+ {
743
+ "category": "question_metadata",
744
+ "language": "swift",
745
+ "relative_path": "question_metadata/r0_00035.parquet",
746
+ "rows": 5000
747
+ },
748
+ {
749
+ "category": "question_metadata",
750
+ "language": "swift",
751
+ "relative_path": "question_metadata/r0_00036.parquet",
752
+ "rows": 5000
753
+ },
754
+ {
755
+ "category": "question_metadata",
756
+ "language": "swift",
757
+ "relative_path": "question_metadata/r0_00037.parquet",
758
+ "rows": 5000
759
+ },
760
+ {
761
+ "category": "question_metadata",
762
+ "language": "swift",
763
+ "relative_path": "question_metadata/r0_00038.parquet",
764
+ "rows": 5000
765
+ },
766
+ {
767
+ "category": "question_metadata",
768
+ "language": "swift",
769
+ "relative_path": "question_metadata/r0_00039.parquet",
770
+ "rows": 5000
771
+ },
772
+ {
773
+ "category": "question_metadata",
774
+ "language": "swift",
775
+ "relative_path": "question_metadata/r0_00040.parquet",
776
+ "rows": 5000
777
+ },
778
+ {
779
+ "category": "question_metadata",
780
+ "language": "swift",
781
+ "relative_path": "question_metadata/r0_00041.parquet",
782
+ "rows": 5000
783
+ },
784
+ {
785
+ "category": "question_metadata",
786
+ "language": "swift",
787
+ "relative_path": "question_metadata/r0_00042.parquet",
788
+ "rows": 5000
789
+ },
790
+ {
791
+ "category": "question_metadata",
792
+ "language": "swift",
793
+ "relative_path": "question_metadata/r0_00043.parquet",
794
+ "rows": 5000
795
+ },
796
+ {
797
+ "category": "question_metadata",
798
+ "language": "swift",
799
+ "relative_path": "question_metadata/r0_00044.parquet",
800
+ "rows": 5000
801
+ },
802
+ {
803
+ "category": "question_metadata",
804
+ "language": "swift",
805
+ "relative_path": "question_metadata/r0_00045.parquet",
806
+ "rows": 5000
807
+ },
808
+ {
809
+ "category": "question_metadata",
810
+ "language": "swift",
811
+ "relative_path": "question_metadata/r0_00046.parquet",
812
+ "rows": 5000
813
+ },
814
+ {
815
+ "category": "question_metadata",
816
+ "language": "swift",
817
+ "relative_path": "question_metadata/r0_00047.parquet",
818
+ "rows": 5000
819
+ },
820
+ {
821
+ "category": "question_metadata",
822
+ "language": "swift",
823
+ "relative_path": "question_metadata/r0_00048.parquet",
824
+ "rows": 5000
825
+ },
826
+ {
827
+ "category": "question_metadata",
828
+ "language": "swift",
829
+ "relative_path": "question_metadata/r0_00049.parquet",
830
+ "rows": 5000
831
+ },
832
+ {
833
+ "category": "question_metadata",
834
+ "language": "swift",
835
+ "relative_path": "question_metadata/r0_00050.parquet",
836
+ "rows": 5000
837
+ },
838
+ {
839
+ "category": "question_metadata",
840
+ "language": "swift",
841
+ "relative_path": "question_metadata/r0_00051.parquet",
842
+ "rows": 5000
843
+ },
844
+ {
845
+ "category": "question_metadata",
846
+ "language": "swift",
847
+ "relative_path": "question_metadata/r0_00052.parquet",
848
+ "rows": 5000
849
+ },
850
+ {
851
+ "category": "question_metadata",
852
+ "language": "swift",
853
+ "relative_path": "question_metadata/r0_00053.parquet",
854
+ "rows": 5000
855
+ },
856
+ {
857
+ "category": "question_metadata",
858
+ "language": "swift",
859
+ "relative_path": "question_metadata/r0_00054.parquet",
860
+ "rows": 5000
861
+ },
862
+ {
863
+ "category": "question_metadata",
864
+ "language": "swift",
865
+ "relative_path": "question_metadata/r0_00055.parquet",
866
+ "rows": 5000
867
+ },
868
+ {
869
+ "category": "question_metadata",
870
+ "language": "swift",
871
+ "relative_path": "question_metadata/r0_00056.parquet",
872
+ "rows": 5000
873
+ },
874
+ {
875
+ "category": "question_metadata",
876
+ "language": "swift",
877
+ "relative_path": "question_metadata/r0_00057.parquet",
878
+ "rows": 5000
879
+ },
880
+ {
881
+ "category": "question_metadata",
882
+ "language": "swift",
883
+ "relative_path": "question_metadata/r0_00058.parquet",
884
+ "rows": 5000
885
+ },
886
+ {
887
+ "category": "question_metadata",
888
+ "language": "swift",
889
+ "relative_path": "question_metadata/r0_00059.parquet",
890
+ "rows": 5000
891
+ },
892
+ {
893
+ "category": "question_metadata",
894
+ "language": "swift",
895
+ "relative_path": "question_metadata/r0_00060.parquet",
896
+ "rows": 5000
897
+ },
898
+ {
899
+ "category": "question_metadata",
900
+ "language": "swift",
901
+ "relative_path": "question_metadata/r0_00061.parquet",
902
+ "rows": 5000
903
+ },
904
+ {
905
+ "category": "question_metadata",
906
+ "language": "swift",
907
+ "relative_path": "question_metadata/r0_00062.parquet",
908
+ "rows": 5000
909
+ },
910
+ {
911
+ "category": "question_metadata",
912
+ "language": "swift",
913
+ "relative_path": "question_metadata/r0_00063.parquet",
914
+ "rows": 5000
915
+ },
916
+ {
917
+ "category": "question_metadata",
918
+ "language": "swift",
919
+ "relative_path": "question_metadata/r0_00064.parquet",
920
+ "rows": 5000
921
+ },
922
+ {
923
+ "category": "question_metadata",
924
+ "language": "swift",
925
+ "relative_path": "question_metadata/r0_00065.parquet",
926
+ "rows": 5000
927
+ },
928
+ {
929
+ "category": "question_metadata",
930
+ "language": "swift",
931
+ "relative_path": "question_metadata/r0_00066.parquet",
932
+ "rows": 5000
933
+ },
934
+ {
935
+ "category": "question_metadata",
936
+ "language": "swift",
937
+ "relative_path": "question_metadata/r0_00067.parquet",
938
+ "rows": 1363
939
+ }
940
+ ],
941
+ "language": "swift",
942
+ "source": "vector_dataset_language_folder",
943
+ "total_rows": 756650
944
+ }