Mo7art commited on
Commit
dc80985
·
verified ·
1 Parent(s): de574b6

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_00003.parquet +3 -0
  4. chunk_records/r0_00004.parquet +3 -0
  5. chunk_records/r0_00005.parquet +3 -0
  6. chunk_records/r0_00006.parquet +3 -0
  7. chunk_records/r0_00008.parquet +3 -0
  8. chunk_records/r0_00010.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_00008.parquet +3 -0
  13. chunk_records/r1_00010.parquet +3 -0
  14. chunk_records/r1_00012.parquet +3 -0
  15. chunk_records/r2_00004.parquet +3 -0
  16. chunk_records/r2_00008.parquet +3 -0
  17. chunk_records/r2_00012.parquet +3 -0
  18. chunk_records/r3_00002.parquet +3 -0
  19. chunk_records/r3_00005.parquet +3 -0
  20. chunk_records/r3_00006.parquet +3 -0
  21. chunk_records/r3_00010.parquet +3 -0
  22. chunk_records/r4_00000.parquet +3 -0
  23. chunk_records/r4_00002.parquet +3 -0
  24. chunk_records/r4_00004.parquet +3 -0
  25. chunk_records/r4_00005.parquet +3 -0
  26. chunk_records/r4_00007.parquet +3 -0
  27. chunk_records/r4_00008.parquet +3 -0
  28. chunk_records/r4_00010.parquet +3 -0
  29. chunk_records/r5_00000.parquet +3 -0
  30. chunk_records/r5_00001.parquet +3 -0
  31. chunk_records/r5_00002.parquet +3 -0
  32. chunk_records/r5_00004.parquet +3 -0
  33. chunk_records/r5_00006.parquet +3 -0
  34. chunk_records/r5_00007.parquet +3 -0
  35. chunk_records/r5_00012.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_00004.parquet +3 -0
  40. chunk_records/r6_00005.parquet +3 -0
  41. chunk_records/r6_00012.parquet +3 -0
  42. chunk_records/r7_00000.parquet +3 -0
  43. chunk_records/r7_00001.parquet +3 -0
  44. chunk_records/r7_00002.parquet +3 -0
  45. chunk_records/r7_00003.parquet +3 -0
  46. chunk_records/r7_00006.parquet +3 -0
  47. chunk_records/r7_00008.parquet +3 -0
  48. chunk_records/r7_00009.parquet +3 -0
  49. chunk_records/r7_00012.parquet +3 -0
  50. dataset_manifest.json +1124 -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 - C
10
+ license: cc-by-sa-4.0
11
+ size_categories:
12
+ - 1M<n<10M
13
+ ---
14
+
15
+ # C StackOverflow Vector Dataset Datasheet
16
+
17
+ ## 1. What This Dataset Is
18
+
19
+ This dataset is the C-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 C 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 C 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_c_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:ccdbbf5cbda4f29b528a471d533b48bd7a2d751ce6d9882e4f5141f0c27685c9
3
+ size 29656982
chunk_records/r0_00003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f44420648a75d53471cdc0c9f3120a501328cb4c259e3991f4f6f5e3605b4bb3
3
+ size 31557894
chunk_records/r0_00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8d5a1993eccfc671ae44002e8998a82317ad0538b12d506de689367a6198a6c0
3
+ size 32047248
chunk_records/r0_00005.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5a1d75fc0085416ae3989eb18241a9e5de39dcb24ca3ab109a3e7dc9b8a2c715
3
+ size 32621004
chunk_records/r0_00006.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e42f2cc49d83389a3db6689873b4026251ed1e08254ea5ed9afd1e86d6571b5
3
+ size 33278028
chunk_records/r0_00008.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:690d937f7b832a0b33783fca9d3d6c372b508cf445d2d56adaeee5c7cc8ef06b
3
+ size 34804128
chunk_records/r0_00010.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:80e32f58b6d1287d3a0ad44c1112c83ed47aedf33170c51c9a207d62fd5a4f97
3
+ size 36262528
chunk_records/r1_00003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b24df170f308259cd4d8b0f4e0d0978dbad1ade8a85d2d75d70c16fa894a0ec1
3
+ size 31560091
chunk_records/r1_00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e508b1fe6d1a76dfad9084354367e5ff2db683cdcb11156ce21b0f0a71ea37d5
3
+ size 32035370
chunk_records/r1_00005.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c680d0189868e5334d0b9f72d2b9449a702461fc7fab7fdd5688ed116e862c57
3
+ size 32613787
chunk_records/r1_00008.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3439957b7a00bd213d1855fbb4f207bbdea43d965d6553a6eb37f35ef3bde362
3
+ size 34849817
chunk_records/r1_00010.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:264a1bf0ad1cfb904175bcdf033c00b94a0f03c861c63482996b91614c1601e8
3
+ size 36212649
chunk_records/r1_00012.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b63d4b7dec70b6ffffacbaa1c27356175cb33153c042ec1ee6094617f3e7257e
3
+ size 33140289
chunk_records/r2_00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c3ddc64c8ccf88f0f95c266612d61a8166d367c7e59cd6362db6879b85b89aff
3
+ size 32058521
chunk_records/r2_00008.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:47fb8363a8c1e62a84a5bff4c21bc86c172d096387ffec7afff9dbd4199d483b
3
+ size 34841202
chunk_records/r2_00012.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5e8b2f87efa7cfd0d7561b7668e5d12eb898d8044c5ebb3bc2e679af16bb2c4f
3
+ size 33146566
chunk_records/r3_00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6d2b47873cbfba8535c7d3ffa880dc76149383a9421ae22db970a53032808182
3
+ size 31026118
chunk_records/r3_00005.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1eccdde401e4946a57bf4fd04e2c0ba87dfe3c3106c6dcc3a2f07eebeef07f4e
3
+ size 32587656
chunk_records/r3_00006.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b4d7ea99af90cce25cccd6aba492cfa40a6f53767196abeacf3aed8f5501bf0
3
+ size 33225250
chunk_records/r3_00010.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1b2439a7becc4ed249ef7bbc810380e58934964f3d2b547c7bc41d6e0ee6de13
3
+ size 36208518
chunk_records/r4_00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:557ba3bb8d543e5ffde86cc3157e90b8ea2146af107a44af19ea68774387667d
3
+ size 29662321
chunk_records/r4_00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3665d0104042a017f08b0e2c4ef54bee10e9dd59554661941cae8b91b88b74f2
3
+ size 31028551
chunk_records/r4_00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e3272f0af093bc25466f3049b9a123820af1e2d38bc50b8f8e8c485638e10df2
3
+ size 32035250
chunk_records/r4_00005.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4aeef5e1ef896fe6306a35c68237373161e58a6c4388c34d963bd712630a8447
3
+ size 32606540
chunk_records/r4_00007.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:82d77b19549ade52b98cd57a50bb8b3e75f13d60eb5c5c69ac23c57ee3b2ad6b
3
+ size 34012375
chunk_records/r4_00008.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c9d5259a1e1a8cf0c62f6e3fac239cfb029eeab83e0aa23b2daf7ec581ab567a
3
+ size 34828698
chunk_records/r4_00010.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:17723c9d7bc9880b0d02225274c0482d4d374e85caa5e6c6b2cb89190f9e1d68
3
+ size 36204694
chunk_records/r5_00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:02864abe4e34bfcd4170d47b9bb410291acb373b44b5f0483dc9d471258e9b31
3
+ size 29648458
chunk_records/r5_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:de6f6f19492f757c7802d7af0b6027b9fd023bbe0eaeacd7ee7d44c891fab2cd
3
+ size 30502626
chunk_records/r5_00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a3c915a236ff450714e4b871cea4119a3bbc95d98edb23816fb18f3128d6d37b
3
+ size 31029766
chunk_records/r5_00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7aaebf35ea1f99200cb0d45cd7dbc040e835edaaa7a3ea360a9e0a37bbcaeab9
3
+ size 32029603
chunk_records/r5_00006.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:487494a3d8bc707fbcecf26e0aef3b7e9f8f3713f553aaed6e4dd84bc9010930
3
+ size 33306883
chunk_records/r5_00007.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:302732122a5a49c36d388b57d0bcbbbd9465d941d4466760f7019534bd714aad
3
+ size 34020216
chunk_records/r5_00012.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:93043db1c0b713cb1455e6c90145f301541df4bbba18e2a749d795cabdf05820
3
+ size 33109607
chunk_records/r6_00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:827a8f2b8c480e80f28e1ccc37aa6a429c5009b07941c1212fea5361317bb408
3
+ size 29664099
chunk_records/r6_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bfce79f4b131031c80f82f1fbcacfb1c083ee768c0513b69bcd661747ba7cd84
3
+ size 30475051
chunk_records/r6_00003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e328e514bd2e1a30658b377bbc78aa93708dacc6305643820357f6d018950a2b
3
+ size 31576066
chunk_records/r6_00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:65021b56d0166f14855bd5ed18cfd672f10734906b490fe75538ea1a9bb4f1da
3
+ size 32071658
chunk_records/r6_00005.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5310a615273091f219512d600033cfc19547239582b03ce1126e282d9913d597
3
+ size 32605951
chunk_records/r6_00012.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:514d9d4ee181948c70355be74f37355795ce7303f686e4ca3c6f4e626b26e20f
3
+ size 33136060
chunk_records/r7_00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e47a29fc92a7130ad5f038b14bcb64920a7259489445220b9daa08aaaabe2384
3
+ size 29678362
chunk_records/r7_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5a3909cf712e48b80d0efbcbb9ceb81df035bb99f90b76ecfd2a852198696ff4
3
+ size 30518482
chunk_records/r7_00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af2831065e9a7537478d5dfe1066aa6da164ad4fb321aed7ccffc6afb64457ab
3
+ size 31075003
chunk_records/r7_00003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ec8e7228dcf882769cf12400b5d7f2847e2bda8156188494b40e172b07822a71
3
+ size 31560746
chunk_records/r7_00006.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8be5cbc85f1a7a79b489d9646a2818f1b120b3d76786d0ba77511846535ce022
3
+ size 33308569
chunk_records/r7_00008.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:02658500ab6cfee316b76e1e7d548e0de7403e386a8754573f6465d8f6b58eb6
3
+ size 34902982
chunk_records/r7_00009.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aa9c7f20d402e248057d78ecbb396acbba28d480a131c9216bbfc7d6160c3a60
3
+ size 35672719
chunk_records/r7_00012.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a743bd2d87e39004ee560e5fcf9801f26fee1bd0ade843e36b0dead235d2eed
3
+ size 33180888
dataset_manifest.json ADDED
@@ -0,0 +1,1124 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "file_count": 186,
3
+ "files": [
4
+ {
5
+ "category": "chunk_records",
6
+ "language": "c",
7
+ "relative_path": "chunk_records/r0_00000.parquet",
8
+ "rows": 5000
9
+ },
10
+ {
11
+ "category": "chunk_records",
12
+ "language": "c",
13
+ "relative_path": "chunk_records/r0_00001.parquet",
14
+ "rows": 5000
15
+ },
16
+ {
17
+ "category": "chunk_records",
18
+ "language": "c",
19
+ "relative_path": "chunk_records/r0_00002.parquet",
20
+ "rows": 5000
21
+ },
22
+ {
23
+ "category": "chunk_records",
24
+ "language": "c",
25
+ "relative_path": "chunk_records/r0_00003.parquet",
26
+ "rows": 5000
27
+ },
28
+ {
29
+ "category": "chunk_records",
30
+ "language": "c",
31
+ "relative_path": "chunk_records/r0_00004.parquet",
32
+ "rows": 5000
33
+ },
34
+ {
35
+ "category": "chunk_records",
36
+ "language": "c",
37
+ "relative_path": "chunk_records/r0_00005.parquet",
38
+ "rows": 5000
39
+ },
40
+ {
41
+ "category": "chunk_records",
42
+ "language": "c",
43
+ "relative_path": "chunk_records/r0_00006.parquet",
44
+ "rows": 5000
45
+ },
46
+ {
47
+ "category": "chunk_records",
48
+ "language": "c",
49
+ "relative_path": "chunk_records/r0_00007.parquet",
50
+ "rows": 5000
51
+ },
52
+ {
53
+ "category": "chunk_records",
54
+ "language": "c",
55
+ "relative_path": "chunk_records/r0_00008.parquet",
56
+ "rows": 5000
57
+ },
58
+ {
59
+ "category": "chunk_records",
60
+ "language": "c",
61
+ "relative_path": "chunk_records/r0_00009.parquet",
62
+ "rows": 5000
63
+ },
64
+ {
65
+ "category": "chunk_records",
66
+ "language": "c",
67
+ "relative_path": "chunk_records/r0_00010.parquet",
68
+ "rows": 5000
69
+ },
70
+ {
71
+ "category": "chunk_records",
72
+ "language": "c",
73
+ "relative_path": "chunk_records/r0_00011.parquet",
74
+ "rows": 5000
75
+ },
76
+ {
77
+ "category": "chunk_records",
78
+ "language": "c",
79
+ "relative_path": "chunk_records/r0_00012.parquet",
80
+ "rows": 4367
81
+ },
82
+ {
83
+ "category": "chunk_records",
84
+ "language": "c",
85
+ "relative_path": "chunk_records/r1_00000.parquet",
86
+ "rows": 5000
87
+ },
88
+ {
89
+ "category": "chunk_records",
90
+ "language": "c",
91
+ "relative_path": "chunk_records/r1_00001.parquet",
92
+ "rows": 5000
93
+ },
94
+ {
95
+ "category": "chunk_records",
96
+ "language": "c",
97
+ "relative_path": "chunk_records/r1_00002.parquet",
98
+ "rows": 5000
99
+ },
100
+ {
101
+ "category": "chunk_records",
102
+ "language": "c",
103
+ "relative_path": "chunk_records/r1_00003.parquet",
104
+ "rows": 5000
105
+ },
106
+ {
107
+ "category": "chunk_records",
108
+ "language": "c",
109
+ "relative_path": "chunk_records/r1_00004.parquet",
110
+ "rows": 5000
111
+ },
112
+ {
113
+ "category": "chunk_records",
114
+ "language": "c",
115
+ "relative_path": "chunk_records/r1_00005.parquet",
116
+ "rows": 5000
117
+ },
118
+ {
119
+ "category": "chunk_records",
120
+ "language": "c",
121
+ "relative_path": "chunk_records/r1_00006.parquet",
122
+ "rows": 5000
123
+ },
124
+ {
125
+ "category": "chunk_records",
126
+ "language": "c",
127
+ "relative_path": "chunk_records/r1_00007.parquet",
128
+ "rows": 5000
129
+ },
130
+ {
131
+ "category": "chunk_records",
132
+ "language": "c",
133
+ "relative_path": "chunk_records/r1_00008.parquet",
134
+ "rows": 5000
135
+ },
136
+ {
137
+ "category": "chunk_records",
138
+ "language": "c",
139
+ "relative_path": "chunk_records/r1_00009.parquet",
140
+ "rows": 5000
141
+ },
142
+ {
143
+ "category": "chunk_records",
144
+ "language": "c",
145
+ "relative_path": "chunk_records/r1_00010.parquet",
146
+ "rows": 5000
147
+ },
148
+ {
149
+ "category": "chunk_records",
150
+ "language": "c",
151
+ "relative_path": "chunk_records/r1_00011.parquet",
152
+ "rows": 5000
153
+ },
154
+ {
155
+ "category": "chunk_records",
156
+ "language": "c",
157
+ "relative_path": "chunk_records/r1_00012.parquet",
158
+ "rows": 4367
159
+ },
160
+ {
161
+ "category": "chunk_records",
162
+ "language": "c",
163
+ "relative_path": "chunk_records/r2_00000.parquet",
164
+ "rows": 5000
165
+ },
166
+ {
167
+ "category": "chunk_records",
168
+ "language": "c",
169
+ "relative_path": "chunk_records/r2_00001.parquet",
170
+ "rows": 5000
171
+ },
172
+ {
173
+ "category": "chunk_records",
174
+ "language": "c",
175
+ "relative_path": "chunk_records/r2_00002.parquet",
176
+ "rows": 5000
177
+ },
178
+ {
179
+ "category": "chunk_records",
180
+ "language": "c",
181
+ "relative_path": "chunk_records/r2_00003.parquet",
182
+ "rows": 5000
183
+ },
184
+ {
185
+ "category": "chunk_records",
186
+ "language": "c",
187
+ "relative_path": "chunk_records/r2_00004.parquet",
188
+ "rows": 5000
189
+ },
190
+ {
191
+ "category": "chunk_records",
192
+ "language": "c",
193
+ "relative_path": "chunk_records/r2_00005.parquet",
194
+ "rows": 5000
195
+ },
196
+ {
197
+ "category": "chunk_records",
198
+ "language": "c",
199
+ "relative_path": "chunk_records/r2_00006.parquet",
200
+ "rows": 5000
201
+ },
202
+ {
203
+ "category": "chunk_records",
204
+ "language": "c",
205
+ "relative_path": "chunk_records/r2_00007.parquet",
206
+ "rows": 5000
207
+ },
208
+ {
209
+ "category": "chunk_records",
210
+ "language": "c",
211
+ "relative_path": "chunk_records/r2_00008.parquet",
212
+ "rows": 5000
213
+ },
214
+ {
215
+ "category": "chunk_records",
216
+ "language": "c",
217
+ "relative_path": "chunk_records/r2_00009.parquet",
218
+ "rows": 5000
219
+ },
220
+ {
221
+ "category": "chunk_records",
222
+ "language": "c",
223
+ "relative_path": "chunk_records/r2_00010.parquet",
224
+ "rows": 5000
225
+ },
226
+ {
227
+ "category": "chunk_records",
228
+ "language": "c",
229
+ "relative_path": "chunk_records/r2_00011.parquet",
230
+ "rows": 5000
231
+ },
232
+ {
233
+ "category": "chunk_records",
234
+ "language": "c",
235
+ "relative_path": "chunk_records/r2_00012.parquet",
236
+ "rows": 4367
237
+ },
238
+ {
239
+ "category": "chunk_records",
240
+ "language": "c",
241
+ "relative_path": "chunk_records/r3_00000.parquet",
242
+ "rows": 5000
243
+ },
244
+ {
245
+ "category": "chunk_records",
246
+ "language": "c",
247
+ "relative_path": "chunk_records/r3_00001.parquet",
248
+ "rows": 5000
249
+ },
250
+ {
251
+ "category": "chunk_records",
252
+ "language": "c",
253
+ "relative_path": "chunk_records/r3_00002.parquet",
254
+ "rows": 5000
255
+ },
256
+ {
257
+ "category": "chunk_records",
258
+ "language": "c",
259
+ "relative_path": "chunk_records/r3_00003.parquet",
260
+ "rows": 5000
261
+ },
262
+ {
263
+ "category": "chunk_records",
264
+ "language": "c",
265
+ "relative_path": "chunk_records/r3_00004.parquet",
266
+ "rows": 5000
267
+ },
268
+ {
269
+ "category": "chunk_records",
270
+ "language": "c",
271
+ "relative_path": "chunk_records/r3_00005.parquet",
272
+ "rows": 5000
273
+ },
274
+ {
275
+ "category": "chunk_records",
276
+ "language": "c",
277
+ "relative_path": "chunk_records/r3_00006.parquet",
278
+ "rows": 5000
279
+ },
280
+ {
281
+ "category": "chunk_records",
282
+ "language": "c",
283
+ "relative_path": "chunk_records/r3_00007.parquet",
284
+ "rows": 5000
285
+ },
286
+ {
287
+ "category": "chunk_records",
288
+ "language": "c",
289
+ "relative_path": "chunk_records/r3_00008.parquet",
290
+ "rows": 5000
291
+ },
292
+ {
293
+ "category": "chunk_records",
294
+ "language": "c",
295
+ "relative_path": "chunk_records/r3_00009.parquet",
296
+ "rows": 5000
297
+ },
298
+ {
299
+ "category": "chunk_records",
300
+ "language": "c",
301
+ "relative_path": "chunk_records/r3_00010.parquet",
302
+ "rows": 5000
303
+ },
304
+ {
305
+ "category": "chunk_records",
306
+ "language": "c",
307
+ "relative_path": "chunk_records/r3_00011.parquet",
308
+ "rows": 5000
309
+ },
310
+ {
311
+ "category": "chunk_records",
312
+ "language": "c",
313
+ "relative_path": "chunk_records/r3_00012.parquet",
314
+ "rows": 4366
315
+ },
316
+ {
317
+ "category": "chunk_records",
318
+ "language": "c",
319
+ "relative_path": "chunk_records/r4_00000.parquet",
320
+ "rows": 5000
321
+ },
322
+ {
323
+ "category": "chunk_records",
324
+ "language": "c",
325
+ "relative_path": "chunk_records/r4_00001.parquet",
326
+ "rows": 5000
327
+ },
328
+ {
329
+ "category": "chunk_records",
330
+ "language": "c",
331
+ "relative_path": "chunk_records/r4_00002.parquet",
332
+ "rows": 5000
333
+ },
334
+ {
335
+ "category": "chunk_records",
336
+ "language": "c",
337
+ "relative_path": "chunk_records/r4_00003.parquet",
338
+ "rows": 5000
339
+ },
340
+ {
341
+ "category": "chunk_records",
342
+ "language": "c",
343
+ "relative_path": "chunk_records/r4_00004.parquet",
344
+ "rows": 5000
345
+ },
346
+ {
347
+ "category": "chunk_records",
348
+ "language": "c",
349
+ "relative_path": "chunk_records/r4_00005.parquet",
350
+ "rows": 5000
351
+ },
352
+ {
353
+ "category": "chunk_records",
354
+ "language": "c",
355
+ "relative_path": "chunk_records/r4_00006.parquet",
356
+ "rows": 5000
357
+ },
358
+ {
359
+ "category": "chunk_records",
360
+ "language": "c",
361
+ "relative_path": "chunk_records/r4_00007.parquet",
362
+ "rows": 5000
363
+ },
364
+ {
365
+ "category": "chunk_records",
366
+ "language": "c",
367
+ "relative_path": "chunk_records/r4_00008.parquet",
368
+ "rows": 5000
369
+ },
370
+ {
371
+ "category": "chunk_records",
372
+ "language": "c",
373
+ "relative_path": "chunk_records/r4_00009.parquet",
374
+ "rows": 5000
375
+ },
376
+ {
377
+ "category": "chunk_records",
378
+ "language": "c",
379
+ "relative_path": "chunk_records/r4_00010.parquet",
380
+ "rows": 5000
381
+ },
382
+ {
383
+ "category": "chunk_records",
384
+ "language": "c",
385
+ "relative_path": "chunk_records/r4_00011.parquet",
386
+ "rows": 5000
387
+ },
388
+ {
389
+ "category": "chunk_records",
390
+ "language": "c",
391
+ "relative_path": "chunk_records/r4_00012.parquet",
392
+ "rows": 4366
393
+ },
394
+ {
395
+ "category": "chunk_records",
396
+ "language": "c",
397
+ "relative_path": "chunk_records/r5_00000.parquet",
398
+ "rows": 5000
399
+ },
400
+ {
401
+ "category": "chunk_records",
402
+ "language": "c",
403
+ "relative_path": "chunk_records/r5_00001.parquet",
404
+ "rows": 5000
405
+ },
406
+ {
407
+ "category": "chunk_records",
408
+ "language": "c",
409
+ "relative_path": "chunk_records/r5_00002.parquet",
410
+ "rows": 5000
411
+ },
412
+ {
413
+ "category": "chunk_records",
414
+ "language": "c",
415
+ "relative_path": "chunk_records/r5_00003.parquet",
416
+ "rows": 5000
417
+ },
418
+ {
419
+ "category": "chunk_records",
420
+ "language": "c",
421
+ "relative_path": "chunk_records/r5_00004.parquet",
422
+ "rows": 5000
423
+ },
424
+ {
425
+ "category": "chunk_records",
426
+ "language": "c",
427
+ "relative_path": "chunk_records/r5_00005.parquet",
428
+ "rows": 5000
429
+ },
430
+ {
431
+ "category": "chunk_records",
432
+ "language": "c",
433
+ "relative_path": "chunk_records/r5_00006.parquet",
434
+ "rows": 5000
435
+ },
436
+ {
437
+ "category": "chunk_records",
438
+ "language": "c",
439
+ "relative_path": "chunk_records/r5_00007.parquet",
440
+ "rows": 5000
441
+ },
442
+ {
443
+ "category": "chunk_records",
444
+ "language": "c",
445
+ "relative_path": "chunk_records/r5_00008.parquet",
446
+ "rows": 5000
447
+ },
448
+ {
449
+ "category": "chunk_records",
450
+ "language": "c",
451
+ "relative_path": "chunk_records/r5_00009.parquet",
452
+ "rows": 5000
453
+ },
454
+ {
455
+ "category": "chunk_records",
456
+ "language": "c",
457
+ "relative_path": "chunk_records/r5_00010.parquet",
458
+ "rows": 5000
459
+ },
460
+ {
461
+ "category": "chunk_records",
462
+ "language": "c",
463
+ "relative_path": "chunk_records/r5_00011.parquet",
464
+ "rows": 5000
465
+ },
466
+ {
467
+ "category": "chunk_records",
468
+ "language": "c",
469
+ "relative_path": "chunk_records/r5_00012.parquet",
470
+ "rows": 4366
471
+ },
472
+ {
473
+ "category": "chunk_records",
474
+ "language": "c",
475
+ "relative_path": "chunk_records/r6_00000.parquet",
476
+ "rows": 5000
477
+ },
478
+ {
479
+ "category": "chunk_records",
480
+ "language": "c",
481
+ "relative_path": "chunk_records/r6_00001.parquet",
482
+ "rows": 5000
483
+ },
484
+ {
485
+ "category": "chunk_records",
486
+ "language": "c",
487
+ "relative_path": "chunk_records/r6_00002.parquet",
488
+ "rows": 5000
489
+ },
490
+ {
491
+ "category": "chunk_records",
492
+ "language": "c",
493
+ "relative_path": "chunk_records/r6_00003.parquet",
494
+ "rows": 5000
495
+ },
496
+ {
497
+ "category": "chunk_records",
498
+ "language": "c",
499
+ "relative_path": "chunk_records/r6_00004.parquet",
500
+ "rows": 5000
501
+ },
502
+ {
503
+ "category": "chunk_records",
504
+ "language": "c",
505
+ "relative_path": "chunk_records/r6_00005.parquet",
506
+ "rows": 5000
507
+ },
508
+ {
509
+ "category": "chunk_records",
510
+ "language": "c",
511
+ "relative_path": "chunk_records/r6_00006.parquet",
512
+ "rows": 5000
513
+ },
514
+ {
515
+ "category": "chunk_records",
516
+ "language": "c",
517
+ "relative_path": "chunk_records/r6_00007.parquet",
518
+ "rows": 5000
519
+ },
520
+ {
521
+ "category": "chunk_records",
522
+ "language": "c",
523
+ "relative_path": "chunk_records/r6_00008.parquet",
524
+ "rows": 5000
525
+ },
526
+ {
527
+ "category": "chunk_records",
528
+ "language": "c",
529
+ "relative_path": "chunk_records/r6_00009.parquet",
530
+ "rows": 5000
531
+ },
532
+ {
533
+ "category": "chunk_records",
534
+ "language": "c",
535
+ "relative_path": "chunk_records/r6_00010.parquet",
536
+ "rows": 5000
537
+ },
538
+ {
539
+ "category": "chunk_records",
540
+ "language": "c",
541
+ "relative_path": "chunk_records/r6_00011.parquet",
542
+ "rows": 5000
543
+ },
544
+ {
545
+ "category": "chunk_records",
546
+ "language": "c",
547
+ "relative_path": "chunk_records/r6_00012.parquet",
548
+ "rows": 4366
549
+ },
550
+ {
551
+ "category": "chunk_records",
552
+ "language": "c",
553
+ "relative_path": "chunk_records/r7_00000.parquet",
554
+ "rows": 5000
555
+ },
556
+ {
557
+ "category": "chunk_records",
558
+ "language": "c",
559
+ "relative_path": "chunk_records/r7_00001.parquet",
560
+ "rows": 5000
561
+ },
562
+ {
563
+ "category": "chunk_records",
564
+ "language": "c",
565
+ "relative_path": "chunk_records/r7_00002.parquet",
566
+ "rows": 5000
567
+ },
568
+ {
569
+ "category": "chunk_records",
570
+ "language": "c",
571
+ "relative_path": "chunk_records/r7_00003.parquet",
572
+ "rows": 5000
573
+ },
574
+ {
575
+ "category": "chunk_records",
576
+ "language": "c",
577
+ "relative_path": "chunk_records/r7_00004.parquet",
578
+ "rows": 5000
579
+ },
580
+ {
581
+ "category": "chunk_records",
582
+ "language": "c",
583
+ "relative_path": "chunk_records/r7_00005.parquet",
584
+ "rows": 5000
585
+ },
586
+ {
587
+ "category": "chunk_records",
588
+ "language": "c",
589
+ "relative_path": "chunk_records/r7_00006.parquet",
590
+ "rows": 5000
591
+ },
592
+ {
593
+ "category": "chunk_records",
594
+ "language": "c",
595
+ "relative_path": "chunk_records/r7_00007.parquet",
596
+ "rows": 5000
597
+ },
598
+ {
599
+ "category": "chunk_records",
600
+ "language": "c",
601
+ "relative_path": "chunk_records/r7_00008.parquet",
602
+ "rows": 5000
603
+ },
604
+ {
605
+ "category": "chunk_records",
606
+ "language": "c",
607
+ "relative_path": "chunk_records/r7_00009.parquet",
608
+ "rows": 5000
609
+ },
610
+ {
611
+ "category": "chunk_records",
612
+ "language": "c",
613
+ "relative_path": "chunk_records/r7_00010.parquet",
614
+ "rows": 5000
615
+ },
616
+ {
617
+ "category": "chunk_records",
618
+ "language": "c",
619
+ "relative_path": "chunk_records/r7_00011.parquet",
620
+ "rows": 5000
621
+ },
622
+ {
623
+ "category": "chunk_records",
624
+ "language": "c",
625
+ "relative_path": "chunk_records/r7_00012.parquet",
626
+ "rows": 4366
627
+ },
628
+ {
629
+ "category": "question_metadata",
630
+ "language": "c",
631
+ "relative_path": "question_metadata/r0_00000.parquet",
632
+ "rows": 5000
633
+ },
634
+ {
635
+ "category": "question_metadata",
636
+ "language": "c",
637
+ "relative_path": "question_metadata/r0_00001.parquet",
638
+ "rows": 5000
639
+ },
640
+ {
641
+ "category": "question_metadata",
642
+ "language": "c",
643
+ "relative_path": "question_metadata/r0_00002.parquet",
644
+ "rows": 5000
645
+ },
646
+ {
647
+ "category": "question_metadata",
648
+ "language": "c",
649
+ "relative_path": "question_metadata/r0_00003.parquet",
650
+ "rows": 5000
651
+ },
652
+ {
653
+ "category": "question_metadata",
654
+ "language": "c",
655
+ "relative_path": "question_metadata/r0_00004.parquet",
656
+ "rows": 5000
657
+ },
658
+ {
659
+ "category": "question_metadata",
660
+ "language": "c",
661
+ "relative_path": "question_metadata/r0_00005.parquet",
662
+ "rows": 5000
663
+ },
664
+ {
665
+ "category": "question_metadata",
666
+ "language": "c",
667
+ "relative_path": "question_metadata/r0_00006.parquet",
668
+ "rows": 5000
669
+ },
670
+ {
671
+ "category": "question_metadata",
672
+ "language": "c",
673
+ "relative_path": "question_metadata/r0_00007.parquet",
674
+ "rows": 5000
675
+ },
676
+ {
677
+ "category": "question_metadata",
678
+ "language": "c",
679
+ "relative_path": "question_metadata/r0_00008.parquet",
680
+ "rows": 5000
681
+ },
682
+ {
683
+ "category": "question_metadata",
684
+ "language": "c",
685
+ "relative_path": "question_metadata/r0_00009.parquet",
686
+ "rows": 5000
687
+ },
688
+ {
689
+ "category": "question_metadata",
690
+ "language": "c",
691
+ "relative_path": "question_metadata/r0_00010.parquet",
692
+ "rows": 5000
693
+ },
694
+ {
695
+ "category": "question_metadata",
696
+ "language": "c",
697
+ "relative_path": "question_metadata/r0_00011.parquet",
698
+ "rows": 5000
699
+ },
700
+ {
701
+ "category": "question_metadata",
702
+ "language": "c",
703
+ "relative_path": "question_metadata/r0_00012.parquet",
704
+ "rows": 5000
705
+ },
706
+ {
707
+ "category": "question_metadata",
708
+ "language": "c",
709
+ "relative_path": "question_metadata/r0_00013.parquet",
710
+ "rows": 5000
711
+ },
712
+ {
713
+ "category": "question_metadata",
714
+ "language": "c",
715
+ "relative_path": "question_metadata/r0_00014.parquet",
716
+ "rows": 5000
717
+ },
718
+ {
719
+ "category": "question_metadata",
720
+ "language": "c",
721
+ "relative_path": "question_metadata/r0_00015.parquet",
722
+ "rows": 5000
723
+ },
724
+ {
725
+ "category": "question_metadata",
726
+ "language": "c",
727
+ "relative_path": "question_metadata/r0_00016.parquet",
728
+ "rows": 5000
729
+ },
730
+ {
731
+ "category": "question_metadata",
732
+ "language": "c",
733
+ "relative_path": "question_metadata/r0_00017.parquet",
734
+ "rows": 5000
735
+ },
736
+ {
737
+ "category": "question_metadata",
738
+ "language": "c",
739
+ "relative_path": "question_metadata/r0_00018.parquet",
740
+ "rows": 5000
741
+ },
742
+ {
743
+ "category": "question_metadata",
744
+ "language": "c",
745
+ "relative_path": "question_metadata/r0_00019.parquet",
746
+ "rows": 5000
747
+ },
748
+ {
749
+ "category": "question_metadata",
750
+ "language": "c",
751
+ "relative_path": "question_metadata/r0_00020.parquet",
752
+ "rows": 5000
753
+ },
754
+ {
755
+ "category": "question_metadata",
756
+ "language": "c",
757
+ "relative_path": "question_metadata/r0_00021.parquet",
758
+ "rows": 5000
759
+ },
760
+ {
761
+ "category": "question_metadata",
762
+ "language": "c",
763
+ "relative_path": "question_metadata/r0_00022.parquet",
764
+ "rows": 5000
765
+ },
766
+ {
767
+ "category": "question_metadata",
768
+ "language": "c",
769
+ "relative_path": "question_metadata/r0_00023.parquet",
770
+ "rows": 5000
771
+ },
772
+ {
773
+ "category": "question_metadata",
774
+ "language": "c",
775
+ "relative_path": "question_metadata/r0_00024.parquet",
776
+ "rows": 5000
777
+ },
778
+ {
779
+ "category": "question_metadata",
780
+ "language": "c",
781
+ "relative_path": "question_metadata/r0_00025.parquet",
782
+ "rows": 5000
783
+ },
784
+ {
785
+ "category": "question_metadata",
786
+ "language": "c",
787
+ "relative_path": "question_metadata/r0_00026.parquet",
788
+ "rows": 5000
789
+ },
790
+ {
791
+ "category": "question_metadata",
792
+ "language": "c",
793
+ "relative_path": "question_metadata/r0_00027.parquet",
794
+ "rows": 5000
795
+ },
796
+ {
797
+ "category": "question_metadata",
798
+ "language": "c",
799
+ "relative_path": "question_metadata/r0_00028.parquet",
800
+ "rows": 5000
801
+ },
802
+ {
803
+ "category": "question_metadata",
804
+ "language": "c",
805
+ "relative_path": "question_metadata/r0_00029.parquet",
806
+ "rows": 5000
807
+ },
808
+ {
809
+ "category": "question_metadata",
810
+ "language": "c",
811
+ "relative_path": "question_metadata/r0_00030.parquet",
812
+ "rows": 5000
813
+ },
814
+ {
815
+ "category": "question_metadata",
816
+ "language": "c",
817
+ "relative_path": "question_metadata/r0_00031.parquet",
818
+ "rows": 5000
819
+ },
820
+ {
821
+ "category": "question_metadata",
822
+ "language": "c",
823
+ "relative_path": "question_metadata/r0_00032.parquet",
824
+ "rows": 5000
825
+ },
826
+ {
827
+ "category": "question_metadata",
828
+ "language": "c",
829
+ "relative_path": "question_metadata/r0_00033.parquet",
830
+ "rows": 5000
831
+ },
832
+ {
833
+ "category": "question_metadata",
834
+ "language": "c",
835
+ "relative_path": "question_metadata/r0_00034.parquet",
836
+ "rows": 5000
837
+ },
838
+ {
839
+ "category": "question_metadata",
840
+ "language": "c",
841
+ "relative_path": "question_metadata/r0_00035.parquet",
842
+ "rows": 5000
843
+ },
844
+ {
845
+ "category": "question_metadata",
846
+ "language": "c",
847
+ "relative_path": "question_metadata/r0_00036.parquet",
848
+ "rows": 5000
849
+ },
850
+ {
851
+ "category": "question_metadata",
852
+ "language": "c",
853
+ "relative_path": "question_metadata/r0_00037.parquet",
854
+ "rows": 5000
855
+ },
856
+ {
857
+ "category": "question_metadata",
858
+ "language": "c",
859
+ "relative_path": "question_metadata/r0_00038.parquet",
860
+ "rows": 5000
861
+ },
862
+ {
863
+ "category": "question_metadata",
864
+ "language": "c",
865
+ "relative_path": "question_metadata/r0_00039.parquet",
866
+ "rows": 5000
867
+ },
868
+ {
869
+ "category": "question_metadata",
870
+ "language": "c",
871
+ "relative_path": "question_metadata/r0_00040.parquet",
872
+ "rows": 5000
873
+ },
874
+ {
875
+ "category": "question_metadata",
876
+ "language": "c",
877
+ "relative_path": "question_metadata/r0_00041.parquet",
878
+ "rows": 5000
879
+ },
880
+ {
881
+ "category": "question_metadata",
882
+ "language": "c",
883
+ "relative_path": "question_metadata/r0_00042.parquet",
884
+ "rows": 5000
885
+ },
886
+ {
887
+ "category": "question_metadata",
888
+ "language": "c",
889
+ "relative_path": "question_metadata/r0_00043.parquet",
890
+ "rows": 5000
891
+ },
892
+ {
893
+ "category": "question_metadata",
894
+ "language": "c",
895
+ "relative_path": "question_metadata/r0_00044.parquet",
896
+ "rows": 5000
897
+ },
898
+ {
899
+ "category": "question_metadata",
900
+ "language": "c",
901
+ "relative_path": "question_metadata/r0_00045.parquet",
902
+ "rows": 5000
903
+ },
904
+ {
905
+ "category": "question_metadata",
906
+ "language": "c",
907
+ "relative_path": "question_metadata/r0_00046.parquet",
908
+ "rows": 5000
909
+ },
910
+ {
911
+ "category": "question_metadata",
912
+ "language": "c",
913
+ "relative_path": "question_metadata/r0_00047.parquet",
914
+ "rows": 5000
915
+ },
916
+ {
917
+ "category": "question_metadata",
918
+ "language": "c",
919
+ "relative_path": "question_metadata/r0_00048.parquet",
920
+ "rows": 5000
921
+ },
922
+ {
923
+ "category": "question_metadata",
924
+ "language": "c",
925
+ "relative_path": "question_metadata/r0_00049.parquet",
926
+ "rows": 5000
927
+ },
928
+ {
929
+ "category": "question_metadata",
930
+ "language": "c",
931
+ "relative_path": "question_metadata/r0_00050.parquet",
932
+ "rows": 5000
933
+ },
934
+ {
935
+ "category": "question_metadata",
936
+ "language": "c",
937
+ "relative_path": "question_metadata/r0_00051.parquet",
938
+ "rows": 5000
939
+ },
940
+ {
941
+ "category": "question_metadata",
942
+ "language": "c",
943
+ "relative_path": "question_metadata/r0_00052.parquet",
944
+ "rows": 5000
945
+ },
946
+ {
947
+ "category": "question_metadata",
948
+ "language": "c",
949
+ "relative_path": "question_metadata/r0_00053.parquet",
950
+ "rows": 5000
951
+ },
952
+ {
953
+ "category": "question_metadata",
954
+ "language": "c",
955
+ "relative_path": "question_metadata/r0_00054.parquet",
956
+ "rows": 5000
957
+ },
958
+ {
959
+ "category": "question_metadata",
960
+ "language": "c",
961
+ "relative_path": "question_metadata/r0_00055.parquet",
962
+ "rows": 5000
963
+ },
964
+ {
965
+ "category": "question_metadata",
966
+ "language": "c",
967
+ "relative_path": "question_metadata/r0_00056.parquet",
968
+ "rows": 5000
969
+ },
970
+ {
971
+ "category": "question_metadata",
972
+ "language": "c",
973
+ "relative_path": "question_metadata/r0_00057.parquet",
974
+ "rows": 5000
975
+ },
976
+ {
977
+ "category": "question_metadata",
978
+ "language": "c",
979
+ "relative_path": "question_metadata/r0_00058.parquet",
980
+ "rows": 5000
981
+ },
982
+ {
983
+ "category": "question_metadata",
984
+ "language": "c",
985
+ "relative_path": "question_metadata/r0_00059.parquet",
986
+ "rows": 5000
987
+ },
988
+ {
989
+ "category": "question_metadata",
990
+ "language": "c",
991
+ "relative_path": "question_metadata/r0_00060.parquet",
992
+ "rows": 5000
993
+ },
994
+ {
995
+ "category": "question_metadata",
996
+ "language": "c",
997
+ "relative_path": "question_metadata/r0_00061.parquet",
998
+ "rows": 5000
999
+ },
1000
+ {
1001
+ "category": "question_metadata",
1002
+ "language": "c",
1003
+ "relative_path": "question_metadata/r0_00062.parquet",
1004
+ "rows": 5000
1005
+ },
1006
+ {
1007
+ "category": "question_metadata",
1008
+ "language": "c",
1009
+ "relative_path": "question_metadata/r0_00063.parquet",
1010
+ "rows": 5000
1011
+ },
1012
+ {
1013
+ "category": "question_metadata",
1014
+ "language": "c",
1015
+ "relative_path": "question_metadata/r0_00064.parquet",
1016
+ "rows": 5000
1017
+ },
1018
+ {
1019
+ "category": "question_metadata",
1020
+ "language": "c",
1021
+ "relative_path": "question_metadata/r0_00065.parquet",
1022
+ "rows": 5000
1023
+ },
1024
+ {
1025
+ "category": "question_metadata",
1026
+ "language": "c",
1027
+ "relative_path": "question_metadata/r0_00066.parquet",
1028
+ "rows": 5000
1029
+ },
1030
+ {
1031
+ "category": "question_metadata",
1032
+ "language": "c",
1033
+ "relative_path": "question_metadata/r0_00067.parquet",
1034
+ "rows": 5000
1035
+ },
1036
+ {
1037
+ "category": "question_metadata",
1038
+ "language": "c",
1039
+ "relative_path": "question_metadata/r0_00068.parquet",
1040
+ "rows": 5000
1041
+ },
1042
+ {
1043
+ "category": "question_metadata",
1044
+ "language": "c",
1045
+ "relative_path": "question_metadata/r0_00069.parquet",
1046
+ "rows": 5000
1047
+ },
1048
+ {
1049
+ "category": "question_metadata",
1050
+ "language": "c",
1051
+ "relative_path": "question_metadata/r0_00070.parquet",
1052
+ "rows": 5000
1053
+ },
1054
+ {
1055
+ "category": "question_metadata",
1056
+ "language": "c",
1057
+ "relative_path": "question_metadata/r0_00071.parquet",
1058
+ "rows": 5000
1059
+ },
1060
+ {
1061
+ "category": "question_metadata",
1062
+ "language": "c",
1063
+ "relative_path": "question_metadata/r0_00072.parquet",
1064
+ "rows": 5000
1065
+ },
1066
+ {
1067
+ "category": "question_metadata",
1068
+ "language": "c",
1069
+ "relative_path": "question_metadata/r0_00073.parquet",
1070
+ "rows": 5000
1071
+ },
1072
+ {
1073
+ "category": "question_metadata",
1074
+ "language": "c",
1075
+ "relative_path": "question_metadata/r0_00074.parquet",
1076
+ "rows": 5000
1077
+ },
1078
+ {
1079
+ "category": "question_metadata",
1080
+ "language": "c",
1081
+ "relative_path": "question_metadata/r0_00075.parquet",
1082
+ "rows": 5000
1083
+ },
1084
+ {
1085
+ "category": "question_metadata",
1086
+ "language": "c",
1087
+ "relative_path": "question_metadata/r0_00076.parquet",
1088
+ "rows": 5000
1089
+ },
1090
+ {
1091
+ "category": "question_metadata",
1092
+ "language": "c",
1093
+ "relative_path": "question_metadata/r0_00077.parquet",
1094
+ "rows": 5000
1095
+ },
1096
+ {
1097
+ "category": "question_metadata",
1098
+ "language": "c",
1099
+ "relative_path": "question_metadata/r0_00078.parquet",
1100
+ "rows": 5000
1101
+ },
1102
+ {
1103
+ "category": "question_metadata",
1104
+ "language": "c",
1105
+ "relative_path": "question_metadata/r0_00079.parquet",
1106
+ "rows": 5000
1107
+ },
1108
+ {
1109
+ "category": "question_metadata",
1110
+ "language": "c",
1111
+ "relative_path": "question_metadata/r0_00080.parquet",
1112
+ "rows": 5000
1113
+ },
1114
+ {
1115
+ "category": "question_metadata",
1116
+ "language": "c",
1117
+ "relative_path": "question_metadata/r0_00081.parquet",
1118
+ "rows": 2698
1119
+ }
1120
+ ],
1121
+ "language": "c",
1122
+ "source": "vector_dataset_language_folder",
1123
+ "total_rows": 922629
1124
+ }