Mo7art commited on
Commit
1af1bc7
·
verified ·
1 Parent(s): 4032b06

Clean StackOverflow vector language dataset before upload: powershell

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. README.md +0 -115
  2. chunk_records/r0_00000.parquet +0 -3
  3. chunk_records/r0_00001.parquet +0 -3
  4. chunk_records/r0_00002.parquet +0 -3
  5. chunk_records/r0_00003.parquet +0 -3
  6. chunk_records/r1_00000.parquet +0 -3
  7. chunk_records/r1_00001.parquet +0 -3
  8. chunk_records/r1_00002.parquet +0 -3
  9. chunk_records/r1_00003.parquet +0 -3
  10. chunk_records/r2_00000.parquet +0 -3
  11. chunk_records/r2_00001.parquet +0 -3
  12. chunk_records/r2_00002.parquet +0 -3
  13. chunk_records/r2_00003.parquet +0 -3
  14. chunk_records/r3_00000.parquet +0 -3
  15. chunk_records/r3_00001.parquet +0 -3
  16. chunk_records/r3_00002.parquet +0 -3
  17. chunk_records/r3_00003.parquet +0 -3
  18. chunk_records/r4_00000.parquet +0 -3
  19. chunk_records/r4_00001.parquet +0 -3
  20. chunk_records/r4_00002.parquet +0 -3
  21. chunk_records/r4_00003.parquet +0 -3
  22. chunk_records/r5_00000.parquet +0 -3
  23. chunk_records/r5_00001.parquet +0 -3
  24. chunk_records/r5_00002.parquet +0 -3
  25. chunk_records/r5_00003.parquet +0 -3
  26. chunk_records/r6_00000.parquet +0 -3
  27. chunk_records/r6_00001.parquet +0 -3
  28. chunk_records/r6_00002.parquet +0 -3
  29. chunk_records/r6_00003.parquet +0 -3
  30. chunk_records/r7_00000.parquet +0 -3
  31. chunk_records/r7_00001.parquet +0 -3
  32. chunk_records/r7_00002.parquet +0 -3
  33. chunk_records/r7_00003.parquet +0 -3
  34. dataset_manifest.json +0 -344
  35. question_metadata/r0_00000.parquet +0 -3
  36. question_metadata/r0_00001.parquet +0 -3
  37. question_metadata/r0_00002.parquet +0 -3
  38. question_metadata/r0_00003.parquet +0 -3
  39. question_metadata/r0_00004.parquet +0 -3
  40. question_metadata/r0_00005.parquet +0 -3
  41. question_metadata/r0_00006.parquet +0 -3
  42. question_metadata/r0_00007.parquet +0 -3
  43. question_metadata/r0_00008.parquet +0 -3
  44. question_metadata/r0_00009.parquet +0 -3
  45. question_metadata/r0_00010.parquet +0 -3
  46. question_metadata/r0_00011.parquet +0 -3
  47. question_metadata/r0_00012.parquet +0 -3
  48. question_metadata/r0_00013.parquet +0 -3
  49. question_metadata/r0_00014.parquet +0 -3
  50. question_metadata/r0_00015.parquet +0 -3
README.md DELETED
@@ -1,115 +0,0 @@
1
- ---
2
- tags:
3
- - vector-database
4
- - embeddings
5
- - parquet
6
- - qdrant
7
- - stackoverflow
8
- - question-answering
9
- pretty_name: StackOverflow Vector Dataset - Powershell
10
- license: cc-by-sa-4.0
11
- size_categories:
12
- - 1M<n<10M
13
- ---
14
-
15
- # Powershell StackOverflow Vector Dataset Datasheet
16
-
17
- ## 1. What This Dataset Is
18
-
19
- This dataset is the Powershell-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 Powershell 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 Powershell 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_powershell_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 DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:4bf22299fc597a923735ece27b2f8db9d1e683bf06c9ca54c43ed0e0eb372176
3
- size 31077339
 
 
 
 
chunk_records/r0_00001.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:44ad2759b82a415cedffc4b511533fb61c4af71c161c78c2a5be001db5f78cc0
3
- size 33148563
 
 
 
 
chunk_records/r0_00002.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:66b4effd4839b19be8a22e531833456a1e0bebd3f3d92c9e38dd038e651875d0
3
- size 35513553
 
 
 
 
chunk_records/r0_00003.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:4cb98dd1132a3d9610284991260bbcd9febf208fc18fbe79ce0b766988403e37
3
- size 29934106
 
 
 
 
chunk_records/r1_00000.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:b5da4b5d42997a993b865842ff049974e3af6defbde8139672dfbcd381d704b6
3
- size 31087327
 
 
 
 
chunk_records/r1_00001.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:e6cf099bcb1d6dc07490aa632a17f5f499873469a8e03db84f4cca2bc1832940
3
- size 33129375
 
 
 
 
chunk_records/r1_00002.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:d722106d5db5c7a28c542bcfe1fcb1e1607e81b5b33d3da5eede7d87758256e0
3
- size 35532678
 
 
 
 
chunk_records/r1_00003.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:9983b9c034e758caed6282d0dbe04c91c9456503bc49b7aa8742bf5b4942cc8d
3
- size 29956932
 
 
 
 
chunk_records/r2_00000.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:abcef14a5c3a9086ec788c87c1ded40a4e06a10f0f92245f79ef5c43d6bf1931
3
- size 31070335
 
 
 
 
chunk_records/r2_00001.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:59355d9fe57abb48c751c3b72dba6b5832835f7e9870440deabf3d040f3de889
3
- size 33115672
 
 
 
 
chunk_records/r2_00002.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:abdfbb4866b8971ca04c1b137dfe93b6a82eb73ffac85832e81ec775cef4682c
3
- size 35610721
 
 
 
 
chunk_records/r2_00003.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:0adf0ade25ef211f0bb46e50c1cebe9d4013a2eb3d1dc7b7671bc2d5bbe9c884
3
- size 29939926
 
 
 
 
chunk_records/r3_00000.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:ea07d049e6c3600ea179d0534eae28164b7c4ba89d6a7bc87aebc9cc484141f4
3
- size 31109006
 
 
 
 
chunk_records/r3_00001.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:37366efbdb586c909bd46568bd079fc5c4d153adc68866997b69e4cc2823c943
3
- size 33123881
 
 
 
 
chunk_records/r3_00002.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:f9efe28fd4cf90ca7be6c97a83d22d88ae2b57dd25f58c7b7b34c0a1cfa4ed3b
3
- size 35618443
 
 
 
 
chunk_records/r3_00003.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:e662dab6b6d16c8ff9ef8549ab449c92cf300c116808f5e210b12a7e65fb4494
3
- size 29938324
 
 
 
 
chunk_records/r4_00000.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:e9f732e8de1368d4e88226cc03c63da51d6b818f3fdbcdcd334fd2e9c906fa3c
3
- size 31101367
 
 
 
 
chunk_records/r4_00001.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:d51bde406739805fbdb093db406cc06bd77e7e389c2c066a8d8de4239e5a0363
3
- size 33121967
 
 
 
 
chunk_records/r4_00002.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:a1072a305431e68c945c7760131ea8d3b127108d8b66dfed938dd6dbdb3d39af
3
- size 35533433
 
 
 
 
chunk_records/r4_00003.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:835c80ae3eadc534501ff365856d062a3d7ffcc203faea56e460eeb4dd701c05
3
- size 29979229
 
 
 
 
chunk_records/r5_00000.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:08b37bba8569ca6d92838cbaa0084912b81880ea28a566596c79b6d45274cd96
3
- size 31083438
 
 
 
 
chunk_records/r5_00001.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:14395af7f513b87bdd224a92750cef4f3edf3ad2abb704cb234775cd91cc5459
3
- size 33136228
 
 
 
 
chunk_records/r5_00002.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:922ab5f55d81124ef47e6a0486ee8f23288c17a5189aef8b30391e5e7bc2636e
3
- size 35628887
 
 
 
 
chunk_records/r5_00003.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:38129babce2a1fe221ced7f6271e83d5c194380b0454ef463c377ef7fe1c9d65
3
- size 29920655
 
 
 
 
chunk_records/r6_00000.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:26ae1249ef71af754e9cdb2663b0420328aa60dd0c11e4d32d9feb814ac0a3d1
3
- size 31078139
 
 
 
 
chunk_records/r6_00001.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:f8aced018b1c568d85fc9fde6089f79a58fa6e0a532d5fe5845b5ee47716f523
3
- size 33135646
 
 
 
 
chunk_records/r6_00002.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:06c11d5ff67f8bf516f29e1154d08521a4ea166bc5a3b36bf7989afdd2158516
3
- size 35633568
 
 
 
 
chunk_records/r6_00003.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:90a7ce8e3d5aa7c1c88c8b72e605b08328db5bba7f2730d03df9847bbf57bfc5
3
- size 29890144
 
 
 
 
chunk_records/r7_00000.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:f40e12f4e41435deb14bf67d5aea43c7b0410b61e2a6697812dd6fb7f75f73e1
3
- size 31068788
 
 
 
 
chunk_records/r7_00001.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:a20da8dc850eeb575aa825da4b3caba107625171637827077382322e67f8e1c5
3
- size 33123578
 
 
 
 
chunk_records/r7_00002.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:bf17d7a5e44d892f53d8b90041fb421cf3aef618962493742c7c13107baba986
3
- size 35605998
 
 
 
 
chunk_records/r7_00003.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:0e0e60ed12644c950cf9e3be45a9cdc45a774c0919deb0a3b1441d2b598f61d2
3
- size 29935664
 
 
 
 
dataset_manifest.json DELETED
@@ -1,344 +0,0 @@
1
- {
2
- "file_count": 56,
3
- "files": [
4
- {
5
- "category": "chunk_records",
6
- "language": "powershell",
7
- "relative_path": "chunk_records/r0_00000.parquet",
8
- "rows": 5000
9
- },
10
- {
11
- "category": "chunk_records",
12
- "language": "powershell",
13
- "relative_path": "chunk_records/r0_00001.parquet",
14
- "rows": 5000
15
- },
16
- {
17
- "category": "chunk_records",
18
- "language": "powershell",
19
- "relative_path": "chunk_records/r0_00002.parquet",
20
- "rows": 5000
21
- },
22
- {
23
- "category": "chunk_records",
24
- "language": "powershell",
25
- "relative_path": "chunk_records/r0_00003.parquet",
26
- "rows": 3974
27
- },
28
- {
29
- "category": "chunk_records",
30
- "language": "powershell",
31
- "relative_path": "chunk_records/r1_00000.parquet",
32
- "rows": 5000
33
- },
34
- {
35
- "category": "chunk_records",
36
- "language": "powershell",
37
- "relative_path": "chunk_records/r1_00001.parquet",
38
- "rows": 5000
39
- },
40
- {
41
- "category": "chunk_records",
42
- "language": "powershell",
43
- "relative_path": "chunk_records/r1_00002.parquet",
44
- "rows": 5000
45
- },
46
- {
47
- "category": "chunk_records",
48
- "language": "powershell",
49
- "relative_path": "chunk_records/r1_00003.parquet",
50
- "rows": 3974
51
- },
52
- {
53
- "category": "chunk_records",
54
- "language": "powershell",
55
- "relative_path": "chunk_records/r2_00000.parquet",
56
- "rows": 5000
57
- },
58
- {
59
- "category": "chunk_records",
60
- "language": "powershell",
61
- "relative_path": "chunk_records/r2_00001.parquet",
62
- "rows": 5000
63
- },
64
- {
65
- "category": "chunk_records",
66
- "language": "powershell",
67
- "relative_path": "chunk_records/r2_00002.parquet",
68
- "rows": 5000
69
- },
70
- {
71
- "category": "chunk_records",
72
- "language": "powershell",
73
- "relative_path": "chunk_records/r2_00003.parquet",
74
- "rows": 3974
75
- },
76
- {
77
- "category": "chunk_records",
78
- "language": "powershell",
79
- "relative_path": "chunk_records/r3_00000.parquet",
80
- "rows": 5000
81
- },
82
- {
83
- "category": "chunk_records",
84
- "language": "powershell",
85
- "relative_path": "chunk_records/r3_00001.parquet",
86
- "rows": 5000
87
- },
88
- {
89
- "category": "chunk_records",
90
- "language": "powershell",
91
- "relative_path": "chunk_records/r3_00002.parquet",
92
- "rows": 5000
93
- },
94
- {
95
- "category": "chunk_records",
96
- "language": "powershell",
97
- "relative_path": "chunk_records/r3_00003.parquet",
98
- "rows": 3973
99
- },
100
- {
101
- "category": "chunk_records",
102
- "language": "powershell",
103
- "relative_path": "chunk_records/r4_00000.parquet",
104
- "rows": 5000
105
- },
106
- {
107
- "category": "chunk_records",
108
- "language": "powershell",
109
- "relative_path": "chunk_records/r4_00001.parquet",
110
- "rows": 5000
111
- },
112
- {
113
- "category": "chunk_records",
114
- "language": "powershell",
115
- "relative_path": "chunk_records/r4_00002.parquet",
116
- "rows": 5000
117
- },
118
- {
119
- "category": "chunk_records",
120
- "language": "powershell",
121
- "relative_path": "chunk_records/r4_00003.parquet",
122
- "rows": 3973
123
- },
124
- {
125
- "category": "chunk_records",
126
- "language": "powershell",
127
- "relative_path": "chunk_records/r5_00000.parquet",
128
- "rows": 5000
129
- },
130
- {
131
- "category": "chunk_records",
132
- "language": "powershell",
133
- "relative_path": "chunk_records/r5_00001.parquet",
134
- "rows": 5000
135
- },
136
- {
137
- "category": "chunk_records",
138
- "language": "powershell",
139
- "relative_path": "chunk_records/r5_00002.parquet",
140
- "rows": 5000
141
- },
142
- {
143
- "category": "chunk_records",
144
- "language": "powershell",
145
- "relative_path": "chunk_records/r5_00003.parquet",
146
- "rows": 3973
147
- },
148
- {
149
- "category": "chunk_records",
150
- "language": "powershell",
151
- "relative_path": "chunk_records/r6_00000.parquet",
152
- "rows": 5000
153
- },
154
- {
155
- "category": "chunk_records",
156
- "language": "powershell",
157
- "relative_path": "chunk_records/r6_00001.parquet",
158
- "rows": 5000
159
- },
160
- {
161
- "category": "chunk_records",
162
- "language": "powershell",
163
- "relative_path": "chunk_records/r6_00002.parquet",
164
- "rows": 5000
165
- },
166
- {
167
- "category": "chunk_records",
168
- "language": "powershell",
169
- "relative_path": "chunk_records/r6_00003.parquet",
170
- "rows": 3973
171
- },
172
- {
173
- "category": "chunk_records",
174
- "language": "powershell",
175
- "relative_path": "chunk_records/r7_00000.parquet",
176
- "rows": 5000
177
- },
178
- {
179
- "category": "chunk_records",
180
- "language": "powershell",
181
- "relative_path": "chunk_records/r7_00001.parquet",
182
- "rows": 5000
183
- },
184
- {
185
- "category": "chunk_records",
186
- "language": "powershell",
187
- "relative_path": "chunk_records/r7_00002.parquet",
188
- "rows": 5000
189
- },
190
- {
191
- "category": "chunk_records",
192
- "language": "powershell",
193
- "relative_path": "chunk_records/r7_00003.parquet",
194
- "rows": 3973
195
- },
196
- {
197
- "category": "question_metadata",
198
- "language": "powershell",
199
- "relative_path": "question_metadata/r0_00000.parquet",
200
- "rows": 5000
201
- },
202
- {
203
- "category": "question_metadata",
204
- "language": "powershell",
205
- "relative_path": "question_metadata/r0_00001.parquet",
206
- "rows": 5000
207
- },
208
- {
209
- "category": "question_metadata",
210
- "language": "powershell",
211
- "relative_path": "question_metadata/r0_00002.parquet",
212
- "rows": 5000
213
- },
214
- {
215
- "category": "question_metadata",
216
- "language": "powershell",
217
- "relative_path": "question_metadata/r0_00003.parquet",
218
- "rows": 5000
219
- },
220
- {
221
- "category": "question_metadata",
222
- "language": "powershell",
223
- "relative_path": "question_metadata/r0_00004.parquet",
224
- "rows": 5000
225
- },
226
- {
227
- "category": "question_metadata",
228
- "language": "powershell",
229
- "relative_path": "question_metadata/r0_00005.parquet",
230
- "rows": 5000
231
- },
232
- {
233
- "category": "question_metadata",
234
- "language": "powershell",
235
- "relative_path": "question_metadata/r0_00006.parquet",
236
- "rows": 5000
237
- },
238
- {
239
- "category": "question_metadata",
240
- "language": "powershell",
241
- "relative_path": "question_metadata/r0_00007.parquet",
242
- "rows": 5000
243
- },
244
- {
245
- "category": "question_metadata",
246
- "language": "powershell",
247
- "relative_path": "question_metadata/r0_00008.parquet",
248
- "rows": 5000
249
- },
250
- {
251
- "category": "question_metadata",
252
- "language": "powershell",
253
- "relative_path": "question_metadata/r0_00009.parquet",
254
- "rows": 5000
255
- },
256
- {
257
- "category": "question_metadata",
258
- "language": "powershell",
259
- "relative_path": "question_metadata/r0_00010.parquet",
260
- "rows": 5000
261
- },
262
- {
263
- "category": "question_metadata",
264
- "language": "powershell",
265
- "relative_path": "question_metadata/r0_00011.parquet",
266
- "rows": 5000
267
- },
268
- {
269
- "category": "question_metadata",
270
- "language": "powershell",
271
- "relative_path": "question_metadata/r0_00012.parquet",
272
- "rows": 5000
273
- },
274
- {
275
- "category": "question_metadata",
276
- "language": "powershell",
277
- "relative_path": "question_metadata/r0_00013.parquet",
278
- "rows": 5000
279
- },
280
- {
281
- "category": "question_metadata",
282
- "language": "powershell",
283
- "relative_path": "question_metadata/r0_00014.parquet",
284
- "rows": 5000
285
- },
286
- {
287
- "category": "question_metadata",
288
- "language": "powershell",
289
- "relative_path": "question_metadata/r0_00015.parquet",
290
- "rows": 5000
291
- },
292
- {
293
- "category": "question_metadata",
294
- "language": "powershell",
295
- "relative_path": "question_metadata/r0_00016.parquet",
296
- "rows": 5000
297
- },
298
- {
299
- "category": "question_metadata",
300
- "language": "powershell",
301
- "relative_path": "question_metadata/r0_00017.parquet",
302
- "rows": 5000
303
- },
304
- {
305
- "category": "question_metadata",
306
- "language": "powershell",
307
- "relative_path": "question_metadata/r0_00018.parquet",
308
- "rows": 5000
309
- },
310
- {
311
- "category": "question_metadata",
312
- "language": "powershell",
313
- "relative_path": "question_metadata/r0_00019.parquet",
314
- "rows": 5000
315
- },
316
- {
317
- "category": "question_metadata",
318
- "language": "powershell",
319
- "relative_path": "question_metadata/r0_00020.parquet",
320
- "rows": 5000
321
- },
322
- {
323
- "category": "question_metadata",
324
- "language": "powershell",
325
- "relative_path": "question_metadata/r0_00021.parquet",
326
- "rows": 5000
327
- },
328
- {
329
- "category": "question_metadata",
330
- "language": "powershell",
331
- "relative_path": "question_metadata/r0_00022.parquet",
332
- "rows": 5000
333
- },
334
- {
335
- "category": "question_metadata",
336
- "language": "powershell",
337
- "relative_path": "question_metadata/r0_00023.parquet",
338
- "rows": 4081
339
- }
340
- ],
341
- "language": "powershell",
342
- "source": "vector_dataset_language_folder",
343
- "total_rows": 270868
344
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
question_metadata/r0_00000.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:4dfbc372c50e6970adabc9c992e6696ed915dd98faf109ef1ccff5b148f8e5b7
3
- size 8120522
 
 
 
 
question_metadata/r0_00001.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:1e27a6dfbf1a2d91f232e00e23f55e436d948b2ffc08206c7c2d752b7fb5b3dd
3
- size 8173346
 
 
 
 
question_metadata/r0_00002.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:629364f38bb55fa094ad82aa93da99ca94c4099b571fa4b835b00662a7220ebc
3
- size 8292279
 
 
 
 
question_metadata/r0_00003.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:b1a5e02a7ac2c8199a7e8cb11ef9eb4a440f9ed31eefa22e7a61d61c701f219a
3
- size 8415884
 
 
 
 
question_metadata/r0_00004.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:242df792f22c0103500f09f3cf4d8df3d803849b4c119625292420ce2588ddd3
3
- size 7824952
 
 
 
 
question_metadata/r0_00005.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:b79b34fbb3cdfc3a6f37f68ca018bc19f851bc4179a8a2accb633afe00b82489
3
- size 7826713
 
 
 
 
question_metadata/r0_00006.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:a77b82f3bb8f55f36cf3d8de3a58bc9b70b6c51119358c4d781648628c1b32eb
3
- size 8422446
 
 
 
 
question_metadata/r0_00007.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:de752023b669a984506ffa561fa05eb434592b5ccb200a08291e1edf34c83b51
3
- size 8495351
 
 
 
 
question_metadata/r0_00008.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:bcc0e5d8c9ac889ec0d23cded142110e1e19245755d27f4a655fe89a02acd31f
3
- size 8431740
 
 
 
 
question_metadata/r0_00009.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:512d40386ed4381e27870fffb8f6607840db121e2156d108f6438e7443011578
3
- size 8620733
 
 
 
 
question_metadata/r0_00010.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:6744f0a27c51c83b0bb9685e5a0aed301d8c796c88e24976b74e930012ced033
3
- size 8544149
 
 
 
 
question_metadata/r0_00011.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:dc1f1cdaa6d04931776f1dda770d23faf682845fd43af3dca7d9b2b052395ea6
3
- size 8727829
 
 
 
 
question_metadata/r0_00012.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:f30657bc110a2fa0cbebd9478eb39166e1bd1e9548233de2b791e23ba69d68ea
3
- size 8331677
 
 
 
 
question_metadata/r0_00013.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:1fbdcb380b966799d4886ab7d3dce8c6b5ab09ccb56ac7551873e57958319b86
3
- size 8715285
 
 
 
 
question_metadata/r0_00014.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:f3e7a0fff1eb28c7a89f0f410e0ea5a2107459ca799a6cefc8a8ba83323f62af
3
- size 8678198
 
 
 
 
question_metadata/r0_00015.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:46ded3332ea61cca240c32fa3dc4096cbafba5334d81bd1dd6d60e9670b88832
3
- size 8479734