Mo7art commited on
Commit
dde7631
·
verified ·
1 Parent(s): a93bc5b

Add files using upload-large-folder tool

Browse files
Files changed (50) 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/r0_00005.parquet +3 -0
  6. chunk_records/r0_00007.parquet +3 -0
  7. chunk_records/r1_00000.parquet +3 -0
  8. chunk_records/r1_00001.parquet +3 -0
  9. chunk_records/r1_00003.parquet +3 -0
  10. chunk_records/r1_00004.parquet +3 -0
  11. chunk_records/r1_00005.parquet +3 -0
  12. chunk_records/r1_00006.parquet +3 -0
  13. chunk_records/r1_00007.parquet +3 -0
  14. chunk_records/r2_00000.parquet +3 -0
  15. chunk_records/r2_00001.parquet +3 -0
  16. chunk_records/r2_00003.parquet +3 -0
  17. chunk_records/r2_00004.parquet +3 -0
  18. chunk_records/r2_00005.parquet +3 -0
  19. chunk_records/r2_00006.parquet +3 -0
  20. chunk_records/r2_00007.parquet +3 -0
  21. chunk_records/r3_00000.parquet +3 -0
  22. chunk_records/r3_00001.parquet +3 -0
  23. chunk_records/r3_00002.parquet +3 -0
  24. chunk_records/r3_00005.parquet +3 -0
  25. chunk_records/r3_00006.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_00005.parquet +3 -0
  30. chunk_records/r4_00006.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_00006.parquet +3 -0
  36. chunk_records/r6_00000.parquet +3 -0
  37. chunk_records/r6_00001.parquet +3 -0
  38. chunk_records/r6_00003.parquet +3 -0
  39. chunk_records/r6_00005.parquet +3 -0
  40. chunk_records/r6_00006.parquet +3 -0
  41. chunk_records/r6_00007.parquet +3 -0
  42. chunk_records/r7_00000.parquet +3 -0
  43. chunk_records/r7_00001.parquet +3 -0
  44. chunk_records/r7_00004.parquet +3 -0
  45. chunk_records/r7_00005.parquet +3 -0
  46. chunk_records/r7_00006.parquet +3 -0
  47. chunk_records/r7_00007.parquet +3 -0
  48. dataset_manifest.json +668 -0
  49. question_metadata/r0_00015.parquet +3 -0
  50. question_metadata/r0_00042.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 - Ruby
10
+ license: cc-by-sa-4.0
11
+ size_categories:
12
+ - 1M<n<10M
13
+ ---
14
+
15
+ # Ruby StackOverflow Vector Dataset Datasheet
16
+
17
+ ## 1. What This Dataset Is
18
+
19
+ This dataset is the Ruby-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 Ruby 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 Ruby 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_ruby_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:1cc1ba12dbe08597e72fe7f0f6aaebe67f490a7b75d835c4237a5d52d47dc612
3
+ size 29988015
chunk_records/r0_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e70a1559b93753a7593f6c6fa3e7668f52f5f42f114e81e7c6bcaeb81a940ff9
3
+ size 31184740
chunk_records/r0_00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e5b45c486445f3d6dc07b03726adf992330be9c3949d367106eb94d95eb38c58
3
+ size 32100952
chunk_records/r0_00005.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:46ef1cdc23962fe2622ae6fc45e44a937ef38750b8c13358e2eb8cccbaba0b80
3
+ size 35789190
chunk_records/r0_00007.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:58b00203c0dec9fa29eff232ba033e583c5a9c61165ff68ebc678ffd713fef5b
3
+ size 5412716
chunk_records/r1_00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f257f07bc31d05bb463019538242480120439c66f1dbc4084843aebb9c8c46b9
3
+ size 29988662
chunk_records/r1_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d344a5ad9b5f4f1ea4b511be5bd05c94d6414efb765862ccb42fa5ddee26a55f
3
+ size 31227925
chunk_records/r1_00003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:137e1584d7fd95505124305be18277d477afe547e01a2dea8415cad954e29759
3
+ size 33045983
chunk_records/r1_00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce0cf40be9eed14661efbbd28ffc071e9da6964450201af2cb9eaf761c314116
3
+ size 34214618
chunk_records/r1_00005.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b2554549c1aa8da210dde5aecfd3ee2024e63c6a9a8f35fca8b3d96df175a91f
3
+ size 35818691
chunk_records/r1_00006.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aba49936be28852329cb34915de682a7fcb320b5200ac6fe08d1afb305b2e68b
3
+ size 37426725
chunk_records/r1_00007.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9f99a39680e477e3aa3b858a00c151cab1e15f7005074e402451cd5ba4009051
3
+ size 5404692
chunk_records/r2_00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:65c1df0a6bec012526047d658ef96d67b4720087982ffef1f6e9f157c1e55a92
3
+ size 30009596
chunk_records/r2_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0ed46e1d3a60f843347c672999bd9b358fe5f264e6c20703877f80e77ad80bac
3
+ size 31172387
chunk_records/r2_00003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:efcd62f5337d2ffe4d9ff4396f78415cc8c792338fa924d8f03b73883e7876a0
3
+ size 33060354
chunk_records/r2_00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:83275d2cb453de91ac72ab466e12463bde359c8698d5638c80285ee4fbdd4b7e
3
+ size 34173482
chunk_records/r2_00005.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:43c0d90e524fd4df4b39afd95a7e527bfdfc6a58ca79677ee5249c5b41056e6b
3
+ size 35778649
chunk_records/r2_00006.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:baf8d6aafba8deb86a53404246a8c93c42d370f197d9f683d48b10124a175e2c
3
+ size 37438220
chunk_records/r2_00007.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c0d12d61fcb23b47b02424a523f81fa3de1983d6bdf3182665b156c8942cedb
3
+ size 5411967
chunk_records/r3_00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f48c0ef71d88dd082ba9287ac1636e2e10f63fba297b0b003722174be5244fae
3
+ size 29995316
chunk_records/r3_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4ea9aae4ae694eb50c97bfdf28a3789ad131b660c4f023c36e2d407eae92e74
3
+ size 31191507
chunk_records/r3_00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:958866c09232dcb6eeed81c033867ade3b46facb3bf31cd93b068b116bc0950f
3
+ size 32051640
chunk_records/r3_00005.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4def492eee4c145d21edef75be2e65040a0a96fcd62978cde7bcf0b21a42c621
3
+ size 35854976
chunk_records/r3_00006.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d7d035b1c65a78d687127330f69eea44bb332838b69c0e8d6d055567359be58
3
+ size 37405678
chunk_records/r4_00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0c9dba31d8e38d1d69f1f202768c46dd4434f7444f969b55c13f44f2b071d3f
3
+ size 32064752
chunk_records/r4_00003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5510ebfc16fca765a5149412bb7f2c3c0d3e277d60bb0b99071b30701b260775
3
+ size 33046219
chunk_records/r4_00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2685339d327ecc9d66f69c2cd4cfc2c7ab882387b48b84af20ba6c38ad209d31
3
+ size 34161316
chunk_records/r4_00005.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:630656cce97ced9cb679e04827e87716cdf6fcea2ea0bf2523cbdb01f21a22f4
3
+ size 35862682
chunk_records/r4_00006.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4ef4f09410ee0d81e9121fa42138c5d77bb002a3bcd8aaea1bbe2f9a284d1dac
3
+ size 37378639
chunk_records/r5_00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cce20ec1d2cdfc9987413f4c1e8ca9987f0cabd02d0f501a3777aea47406cc94
3
+ size 29987411
chunk_records/r5_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dbc40a5d6dcc071b30945515a77c6306bc9f782e8b6c25e554bff339f131be51
3
+ size 31171967
chunk_records/r5_00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0445452c19c873df0f2676fec3c94c5530a7124bd9e0f9366638becc4faa0cd9
3
+ size 32065585
chunk_records/r5_00003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d1eec4cb9c772f37821cc170b456ad880ce752ae39b0dc4306621daf6df2426
3
+ size 33070756
chunk_records/r5_00006.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:502bc58096450c5b3011df69151b161e95185e4d3d370a8abbc968f76a9d7017
3
+ size 37373875
chunk_records/r6_00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ff72381f2c5389e3dae40368818bf9dc45a1584f58be9a1c8803454effff78b3
3
+ size 30019588
chunk_records/r6_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8693fb6c96ed5e042b7a4b8414bedbfa2187aaed9570eb10f30983693641883a
3
+ size 31169494
chunk_records/r6_00003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df55a9ef58631409bc6abf50bce82dabcb6c9318cb1d1ee4d4f435c270b2ce4e
3
+ size 33041942
chunk_records/r6_00005.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eedca67415251ed111b21798285c1cbbdcc5a74bdbf01ee1e7918478be7c672c
3
+ size 35780601
chunk_records/r6_00006.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c5fb6d4a18425dbce029192bc4b3d39f9fe019c35315bbdfc2babdf3a393ca96
3
+ size 37348173
chunk_records/r6_00007.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:822efddf8c9fcb2567a7e4cc2e6e822bfcd1a3169fccb94f986a951dc84db05c
3
+ size 5400111
chunk_records/r7_00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76529da0c9aa76010acd6d5153708daf881a4d8dff21a811cf00ab471adbad8f
3
+ size 29998601
chunk_records/r7_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2cd909c0cdfbd03e8ffdbd8917d5eabe6b24f3cbe59252055f40b5b9bf43b936
3
+ size 31188619
chunk_records/r7_00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1563799a7757d46685b732e6353dc538a3b30bb15268d7dd65eb0c680e2a59d9
3
+ size 34168844
chunk_records/r7_00005.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:72144328b0dda6c2ce95916aaf785069130566c4d7d7d7623a7adc280a362835
3
+ size 35817684
chunk_records/r7_00006.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:85471931e6fad4ec731369b5fc51e51a96ec23c0dca25aae289ff0cfc2be1d4d
3
+ size 37409604
chunk_records/r7_00007.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:332751cda57ddb9f802af5910dfc9a6be3182f7deb931153ab4db9d8d7e8b4bc
3
+ size 5391973
dataset_manifest.json ADDED
@@ -0,0 +1,668 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "file_count": 110,
3
+ "files": [
4
+ {
5
+ "category": "chunk_records",
6
+ "language": "ruby",
7
+ "relative_path": "chunk_records/r0_00000.parquet",
8
+ "rows": 5000
9
+ },
10
+ {
11
+ "category": "chunk_records",
12
+ "language": "ruby",
13
+ "relative_path": "chunk_records/r0_00001.parquet",
14
+ "rows": 5000
15
+ },
16
+ {
17
+ "category": "chunk_records",
18
+ "language": "ruby",
19
+ "relative_path": "chunk_records/r0_00002.parquet",
20
+ "rows": 5000
21
+ },
22
+ {
23
+ "category": "chunk_records",
24
+ "language": "ruby",
25
+ "relative_path": "chunk_records/r0_00003.parquet",
26
+ "rows": 5000
27
+ },
28
+ {
29
+ "category": "chunk_records",
30
+ "language": "ruby",
31
+ "relative_path": "chunk_records/r0_00004.parquet",
32
+ "rows": 5000
33
+ },
34
+ {
35
+ "category": "chunk_records",
36
+ "language": "ruby",
37
+ "relative_path": "chunk_records/r0_00005.parquet",
38
+ "rows": 5000
39
+ },
40
+ {
41
+ "category": "chunk_records",
42
+ "language": "ruby",
43
+ "relative_path": "chunk_records/r0_00006.parquet",
44
+ "rows": 5000
45
+ },
46
+ {
47
+ "category": "chunk_records",
48
+ "language": "ruby",
49
+ "relative_path": "chunk_records/r0_00007.parquet",
50
+ "rows": 694
51
+ },
52
+ {
53
+ "category": "chunk_records",
54
+ "language": "ruby",
55
+ "relative_path": "chunk_records/r1_00000.parquet",
56
+ "rows": 5000
57
+ },
58
+ {
59
+ "category": "chunk_records",
60
+ "language": "ruby",
61
+ "relative_path": "chunk_records/r1_00001.parquet",
62
+ "rows": 5000
63
+ },
64
+ {
65
+ "category": "chunk_records",
66
+ "language": "ruby",
67
+ "relative_path": "chunk_records/r1_00002.parquet",
68
+ "rows": 5000
69
+ },
70
+ {
71
+ "category": "chunk_records",
72
+ "language": "ruby",
73
+ "relative_path": "chunk_records/r1_00003.parquet",
74
+ "rows": 5000
75
+ },
76
+ {
77
+ "category": "chunk_records",
78
+ "language": "ruby",
79
+ "relative_path": "chunk_records/r1_00004.parquet",
80
+ "rows": 5000
81
+ },
82
+ {
83
+ "category": "chunk_records",
84
+ "language": "ruby",
85
+ "relative_path": "chunk_records/r1_00005.parquet",
86
+ "rows": 5000
87
+ },
88
+ {
89
+ "category": "chunk_records",
90
+ "language": "ruby",
91
+ "relative_path": "chunk_records/r1_00006.parquet",
92
+ "rows": 5000
93
+ },
94
+ {
95
+ "category": "chunk_records",
96
+ "language": "ruby",
97
+ "relative_path": "chunk_records/r1_00007.parquet",
98
+ "rows": 694
99
+ },
100
+ {
101
+ "category": "chunk_records",
102
+ "language": "ruby",
103
+ "relative_path": "chunk_records/r2_00000.parquet",
104
+ "rows": 5000
105
+ },
106
+ {
107
+ "category": "chunk_records",
108
+ "language": "ruby",
109
+ "relative_path": "chunk_records/r2_00001.parquet",
110
+ "rows": 5000
111
+ },
112
+ {
113
+ "category": "chunk_records",
114
+ "language": "ruby",
115
+ "relative_path": "chunk_records/r2_00002.parquet",
116
+ "rows": 5000
117
+ },
118
+ {
119
+ "category": "chunk_records",
120
+ "language": "ruby",
121
+ "relative_path": "chunk_records/r2_00003.parquet",
122
+ "rows": 5000
123
+ },
124
+ {
125
+ "category": "chunk_records",
126
+ "language": "ruby",
127
+ "relative_path": "chunk_records/r2_00004.parquet",
128
+ "rows": 5000
129
+ },
130
+ {
131
+ "category": "chunk_records",
132
+ "language": "ruby",
133
+ "relative_path": "chunk_records/r2_00005.parquet",
134
+ "rows": 5000
135
+ },
136
+ {
137
+ "category": "chunk_records",
138
+ "language": "ruby",
139
+ "relative_path": "chunk_records/r2_00006.parquet",
140
+ "rows": 5000
141
+ },
142
+ {
143
+ "category": "chunk_records",
144
+ "language": "ruby",
145
+ "relative_path": "chunk_records/r2_00007.parquet",
146
+ "rows": 694
147
+ },
148
+ {
149
+ "category": "chunk_records",
150
+ "language": "ruby",
151
+ "relative_path": "chunk_records/r3_00000.parquet",
152
+ "rows": 5000
153
+ },
154
+ {
155
+ "category": "chunk_records",
156
+ "language": "ruby",
157
+ "relative_path": "chunk_records/r3_00001.parquet",
158
+ "rows": 5000
159
+ },
160
+ {
161
+ "category": "chunk_records",
162
+ "language": "ruby",
163
+ "relative_path": "chunk_records/r3_00002.parquet",
164
+ "rows": 5000
165
+ },
166
+ {
167
+ "category": "chunk_records",
168
+ "language": "ruby",
169
+ "relative_path": "chunk_records/r3_00003.parquet",
170
+ "rows": 5000
171
+ },
172
+ {
173
+ "category": "chunk_records",
174
+ "language": "ruby",
175
+ "relative_path": "chunk_records/r3_00004.parquet",
176
+ "rows": 5000
177
+ },
178
+ {
179
+ "category": "chunk_records",
180
+ "language": "ruby",
181
+ "relative_path": "chunk_records/r3_00005.parquet",
182
+ "rows": 5000
183
+ },
184
+ {
185
+ "category": "chunk_records",
186
+ "language": "ruby",
187
+ "relative_path": "chunk_records/r3_00006.parquet",
188
+ "rows": 5000
189
+ },
190
+ {
191
+ "category": "chunk_records",
192
+ "language": "ruby",
193
+ "relative_path": "chunk_records/r3_00007.parquet",
194
+ "rows": 694
195
+ },
196
+ {
197
+ "category": "chunk_records",
198
+ "language": "ruby",
199
+ "relative_path": "chunk_records/r4_00000.parquet",
200
+ "rows": 5000
201
+ },
202
+ {
203
+ "category": "chunk_records",
204
+ "language": "ruby",
205
+ "relative_path": "chunk_records/r4_00001.parquet",
206
+ "rows": 5000
207
+ },
208
+ {
209
+ "category": "chunk_records",
210
+ "language": "ruby",
211
+ "relative_path": "chunk_records/r4_00002.parquet",
212
+ "rows": 5000
213
+ },
214
+ {
215
+ "category": "chunk_records",
216
+ "language": "ruby",
217
+ "relative_path": "chunk_records/r4_00003.parquet",
218
+ "rows": 5000
219
+ },
220
+ {
221
+ "category": "chunk_records",
222
+ "language": "ruby",
223
+ "relative_path": "chunk_records/r4_00004.parquet",
224
+ "rows": 5000
225
+ },
226
+ {
227
+ "category": "chunk_records",
228
+ "language": "ruby",
229
+ "relative_path": "chunk_records/r4_00005.parquet",
230
+ "rows": 5000
231
+ },
232
+ {
233
+ "category": "chunk_records",
234
+ "language": "ruby",
235
+ "relative_path": "chunk_records/r4_00006.parquet",
236
+ "rows": 5000
237
+ },
238
+ {
239
+ "category": "chunk_records",
240
+ "language": "ruby",
241
+ "relative_path": "chunk_records/r4_00007.parquet",
242
+ "rows": 694
243
+ },
244
+ {
245
+ "category": "chunk_records",
246
+ "language": "ruby",
247
+ "relative_path": "chunk_records/r5_00000.parquet",
248
+ "rows": 5000
249
+ },
250
+ {
251
+ "category": "chunk_records",
252
+ "language": "ruby",
253
+ "relative_path": "chunk_records/r5_00001.parquet",
254
+ "rows": 5000
255
+ },
256
+ {
257
+ "category": "chunk_records",
258
+ "language": "ruby",
259
+ "relative_path": "chunk_records/r5_00002.parquet",
260
+ "rows": 5000
261
+ },
262
+ {
263
+ "category": "chunk_records",
264
+ "language": "ruby",
265
+ "relative_path": "chunk_records/r5_00003.parquet",
266
+ "rows": 5000
267
+ },
268
+ {
269
+ "category": "chunk_records",
270
+ "language": "ruby",
271
+ "relative_path": "chunk_records/r5_00004.parquet",
272
+ "rows": 5000
273
+ },
274
+ {
275
+ "category": "chunk_records",
276
+ "language": "ruby",
277
+ "relative_path": "chunk_records/r5_00005.parquet",
278
+ "rows": 5000
279
+ },
280
+ {
281
+ "category": "chunk_records",
282
+ "language": "ruby",
283
+ "relative_path": "chunk_records/r5_00006.parquet",
284
+ "rows": 5000
285
+ },
286
+ {
287
+ "category": "chunk_records",
288
+ "language": "ruby",
289
+ "relative_path": "chunk_records/r5_00007.parquet",
290
+ "rows": 694
291
+ },
292
+ {
293
+ "category": "chunk_records",
294
+ "language": "ruby",
295
+ "relative_path": "chunk_records/r6_00000.parquet",
296
+ "rows": 5000
297
+ },
298
+ {
299
+ "category": "chunk_records",
300
+ "language": "ruby",
301
+ "relative_path": "chunk_records/r6_00001.parquet",
302
+ "rows": 5000
303
+ },
304
+ {
305
+ "category": "chunk_records",
306
+ "language": "ruby",
307
+ "relative_path": "chunk_records/r6_00002.parquet",
308
+ "rows": 5000
309
+ },
310
+ {
311
+ "category": "chunk_records",
312
+ "language": "ruby",
313
+ "relative_path": "chunk_records/r6_00003.parquet",
314
+ "rows": 5000
315
+ },
316
+ {
317
+ "category": "chunk_records",
318
+ "language": "ruby",
319
+ "relative_path": "chunk_records/r6_00004.parquet",
320
+ "rows": 5000
321
+ },
322
+ {
323
+ "category": "chunk_records",
324
+ "language": "ruby",
325
+ "relative_path": "chunk_records/r6_00005.parquet",
326
+ "rows": 5000
327
+ },
328
+ {
329
+ "category": "chunk_records",
330
+ "language": "ruby",
331
+ "relative_path": "chunk_records/r6_00006.parquet",
332
+ "rows": 5000
333
+ },
334
+ {
335
+ "category": "chunk_records",
336
+ "language": "ruby",
337
+ "relative_path": "chunk_records/r6_00007.parquet",
338
+ "rows": 694
339
+ },
340
+ {
341
+ "category": "chunk_records",
342
+ "language": "ruby",
343
+ "relative_path": "chunk_records/r7_00000.parquet",
344
+ "rows": 5000
345
+ },
346
+ {
347
+ "category": "chunk_records",
348
+ "language": "ruby",
349
+ "relative_path": "chunk_records/r7_00001.parquet",
350
+ "rows": 5000
351
+ },
352
+ {
353
+ "category": "chunk_records",
354
+ "language": "ruby",
355
+ "relative_path": "chunk_records/r7_00002.parquet",
356
+ "rows": 5000
357
+ },
358
+ {
359
+ "category": "chunk_records",
360
+ "language": "ruby",
361
+ "relative_path": "chunk_records/r7_00003.parquet",
362
+ "rows": 5000
363
+ },
364
+ {
365
+ "category": "chunk_records",
366
+ "language": "ruby",
367
+ "relative_path": "chunk_records/r7_00004.parquet",
368
+ "rows": 5000
369
+ },
370
+ {
371
+ "category": "chunk_records",
372
+ "language": "ruby",
373
+ "relative_path": "chunk_records/r7_00005.parquet",
374
+ "rows": 5000
375
+ },
376
+ {
377
+ "category": "chunk_records",
378
+ "language": "ruby",
379
+ "relative_path": "chunk_records/r7_00006.parquet",
380
+ "rows": 5000
381
+ },
382
+ {
383
+ "category": "chunk_records",
384
+ "language": "ruby",
385
+ "relative_path": "chunk_records/r7_00007.parquet",
386
+ "rows": 693
387
+ },
388
+ {
389
+ "category": "question_metadata",
390
+ "language": "ruby",
391
+ "relative_path": "question_metadata/r0_00000.parquet",
392
+ "rows": 5000
393
+ },
394
+ {
395
+ "category": "question_metadata",
396
+ "language": "ruby",
397
+ "relative_path": "question_metadata/r0_00001.parquet",
398
+ "rows": 5000
399
+ },
400
+ {
401
+ "category": "question_metadata",
402
+ "language": "ruby",
403
+ "relative_path": "question_metadata/r0_00002.parquet",
404
+ "rows": 5000
405
+ },
406
+ {
407
+ "category": "question_metadata",
408
+ "language": "ruby",
409
+ "relative_path": "question_metadata/r0_00003.parquet",
410
+ "rows": 5000
411
+ },
412
+ {
413
+ "category": "question_metadata",
414
+ "language": "ruby",
415
+ "relative_path": "question_metadata/r0_00004.parquet",
416
+ "rows": 5000
417
+ },
418
+ {
419
+ "category": "question_metadata",
420
+ "language": "ruby",
421
+ "relative_path": "question_metadata/r0_00005.parquet",
422
+ "rows": 5000
423
+ },
424
+ {
425
+ "category": "question_metadata",
426
+ "language": "ruby",
427
+ "relative_path": "question_metadata/r0_00006.parquet",
428
+ "rows": 5000
429
+ },
430
+ {
431
+ "category": "question_metadata",
432
+ "language": "ruby",
433
+ "relative_path": "question_metadata/r0_00007.parquet",
434
+ "rows": 5000
435
+ },
436
+ {
437
+ "category": "question_metadata",
438
+ "language": "ruby",
439
+ "relative_path": "question_metadata/r0_00008.parquet",
440
+ "rows": 5000
441
+ },
442
+ {
443
+ "category": "question_metadata",
444
+ "language": "ruby",
445
+ "relative_path": "question_metadata/r0_00009.parquet",
446
+ "rows": 5000
447
+ },
448
+ {
449
+ "category": "question_metadata",
450
+ "language": "ruby",
451
+ "relative_path": "question_metadata/r0_00010.parquet",
452
+ "rows": 5000
453
+ },
454
+ {
455
+ "category": "question_metadata",
456
+ "language": "ruby",
457
+ "relative_path": "question_metadata/r0_00011.parquet",
458
+ "rows": 5000
459
+ },
460
+ {
461
+ "category": "question_metadata",
462
+ "language": "ruby",
463
+ "relative_path": "question_metadata/r0_00012.parquet",
464
+ "rows": 5000
465
+ },
466
+ {
467
+ "category": "question_metadata",
468
+ "language": "ruby",
469
+ "relative_path": "question_metadata/r0_00013.parquet",
470
+ "rows": 5000
471
+ },
472
+ {
473
+ "category": "question_metadata",
474
+ "language": "ruby",
475
+ "relative_path": "question_metadata/r0_00014.parquet",
476
+ "rows": 5000
477
+ },
478
+ {
479
+ "category": "question_metadata",
480
+ "language": "ruby",
481
+ "relative_path": "question_metadata/r0_00015.parquet",
482
+ "rows": 5000
483
+ },
484
+ {
485
+ "category": "question_metadata",
486
+ "language": "ruby",
487
+ "relative_path": "question_metadata/r0_00016.parquet",
488
+ "rows": 5000
489
+ },
490
+ {
491
+ "category": "question_metadata",
492
+ "language": "ruby",
493
+ "relative_path": "question_metadata/r0_00017.parquet",
494
+ "rows": 5000
495
+ },
496
+ {
497
+ "category": "question_metadata",
498
+ "language": "ruby",
499
+ "relative_path": "question_metadata/r0_00018.parquet",
500
+ "rows": 5000
501
+ },
502
+ {
503
+ "category": "question_metadata",
504
+ "language": "ruby",
505
+ "relative_path": "question_metadata/r0_00019.parquet",
506
+ "rows": 5000
507
+ },
508
+ {
509
+ "category": "question_metadata",
510
+ "language": "ruby",
511
+ "relative_path": "question_metadata/r0_00020.parquet",
512
+ "rows": 5000
513
+ },
514
+ {
515
+ "category": "question_metadata",
516
+ "language": "ruby",
517
+ "relative_path": "question_metadata/r0_00021.parquet",
518
+ "rows": 5000
519
+ },
520
+ {
521
+ "category": "question_metadata",
522
+ "language": "ruby",
523
+ "relative_path": "question_metadata/r0_00022.parquet",
524
+ "rows": 5000
525
+ },
526
+ {
527
+ "category": "question_metadata",
528
+ "language": "ruby",
529
+ "relative_path": "question_metadata/r0_00023.parquet",
530
+ "rows": 5000
531
+ },
532
+ {
533
+ "category": "question_metadata",
534
+ "language": "ruby",
535
+ "relative_path": "question_metadata/r0_00024.parquet",
536
+ "rows": 5000
537
+ },
538
+ {
539
+ "category": "question_metadata",
540
+ "language": "ruby",
541
+ "relative_path": "question_metadata/r0_00025.parquet",
542
+ "rows": 5000
543
+ },
544
+ {
545
+ "category": "question_metadata",
546
+ "language": "ruby",
547
+ "relative_path": "question_metadata/r0_00026.parquet",
548
+ "rows": 5000
549
+ },
550
+ {
551
+ "category": "question_metadata",
552
+ "language": "ruby",
553
+ "relative_path": "question_metadata/r0_00027.parquet",
554
+ "rows": 5000
555
+ },
556
+ {
557
+ "category": "question_metadata",
558
+ "language": "ruby",
559
+ "relative_path": "question_metadata/r0_00028.parquet",
560
+ "rows": 5000
561
+ },
562
+ {
563
+ "category": "question_metadata",
564
+ "language": "ruby",
565
+ "relative_path": "question_metadata/r0_00029.parquet",
566
+ "rows": 5000
567
+ },
568
+ {
569
+ "category": "question_metadata",
570
+ "language": "ruby",
571
+ "relative_path": "question_metadata/r0_00030.parquet",
572
+ "rows": 5000
573
+ },
574
+ {
575
+ "category": "question_metadata",
576
+ "language": "ruby",
577
+ "relative_path": "question_metadata/r0_00031.parquet",
578
+ "rows": 5000
579
+ },
580
+ {
581
+ "category": "question_metadata",
582
+ "language": "ruby",
583
+ "relative_path": "question_metadata/r0_00032.parquet",
584
+ "rows": 5000
585
+ },
586
+ {
587
+ "category": "question_metadata",
588
+ "language": "ruby",
589
+ "relative_path": "question_metadata/r0_00033.parquet",
590
+ "rows": 5000
591
+ },
592
+ {
593
+ "category": "question_metadata",
594
+ "language": "ruby",
595
+ "relative_path": "question_metadata/r0_00034.parquet",
596
+ "rows": 5000
597
+ },
598
+ {
599
+ "category": "question_metadata",
600
+ "language": "ruby",
601
+ "relative_path": "question_metadata/r0_00035.parquet",
602
+ "rows": 5000
603
+ },
604
+ {
605
+ "category": "question_metadata",
606
+ "language": "ruby",
607
+ "relative_path": "question_metadata/r0_00036.parquet",
608
+ "rows": 5000
609
+ },
610
+ {
611
+ "category": "question_metadata",
612
+ "language": "ruby",
613
+ "relative_path": "question_metadata/r0_00037.parquet",
614
+ "rows": 5000
615
+ },
616
+ {
617
+ "category": "question_metadata",
618
+ "language": "ruby",
619
+ "relative_path": "question_metadata/r0_00038.parquet",
620
+ "rows": 5000
621
+ },
622
+ {
623
+ "category": "question_metadata",
624
+ "language": "ruby",
625
+ "relative_path": "question_metadata/r0_00039.parquet",
626
+ "rows": 5000
627
+ },
628
+ {
629
+ "category": "question_metadata",
630
+ "language": "ruby",
631
+ "relative_path": "question_metadata/r0_00040.parquet",
632
+ "rows": 5000
633
+ },
634
+ {
635
+ "category": "question_metadata",
636
+ "language": "ruby",
637
+ "relative_path": "question_metadata/r0_00041.parquet",
638
+ "rows": 5000
639
+ },
640
+ {
641
+ "category": "question_metadata",
642
+ "language": "ruby",
643
+ "relative_path": "question_metadata/r0_00042.parquet",
644
+ "rows": 5000
645
+ },
646
+ {
647
+ "category": "question_metadata",
648
+ "language": "ruby",
649
+ "relative_path": "question_metadata/r0_00043.parquet",
650
+ "rows": 5000
651
+ },
652
+ {
653
+ "category": "question_metadata",
654
+ "language": "ruby",
655
+ "relative_path": "question_metadata/r0_00044.parquet",
656
+ "rows": 5000
657
+ },
658
+ {
659
+ "category": "question_metadata",
660
+ "language": "ruby",
661
+ "relative_path": "question_metadata/r0_00045.parquet",
662
+ "rows": 4336
663
+ }
664
+ ],
665
+ "language": "ruby",
666
+ "source": "vector_dataset_language_folder",
667
+ "total_rows": 514887
668
+ }
question_metadata/r0_00015.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:932894e489a6cd9980d0a294c32c8f1eb3848071a89906b49ec941bf47ba7b18
3
+ size 7966191
question_metadata/r0_00042.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:56365daa51d4dde856b8c02f7a96b309b6b7862048b1c6482f6e8ea41441d150
3
+ size 8344528