Mo7art commited on
Commit
dd7d711
·
verified ·
1 Parent(s): 2760aeb

Add files using upload-large-folder tool

Browse files
Files changed (50) hide show
  1. README.md +137 -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_00003.parquet +3 -0
  6. chunk_records/r0_00004.parquet +3 -0
  7. chunk_records/r0_00006.parquet +3 -0
  8. chunk_records/r1_00000.parquet +3 -0
  9. chunk_records/r1_00001.parquet +3 -0
  10. chunk_records/r1_00002.parquet +3 -0
  11. chunk_records/r1_00003.parquet +3 -0
  12. chunk_records/r1_00004.parquet +3 -0
  13. chunk_records/r1_00005.parquet +3 -0
  14. chunk_records/r1_00006.parquet +3 -0
  15. chunk_records/r2_00002.parquet +3 -0
  16. chunk_records/r2_00005.parquet +3 -0
  17. chunk_records/r2_00006.parquet +3 -0
  18. chunk_records/r3_00000.parquet +3 -0
  19. chunk_records/r3_00001.parquet +3 -0
  20. chunk_records/r3_00002.parquet +3 -0
  21. chunk_records/r3_00003.parquet +3 -0
  22. chunk_records/r3_00004.parquet +3 -0
  23. chunk_records/r3_00006.parquet +3 -0
  24. chunk_records/r4_00000.parquet +3 -0
  25. chunk_records/r4_00001.parquet +3 -0
  26. chunk_records/r4_00004.parquet +3 -0
  27. chunk_records/r4_00005.parquet +3 -0
  28. chunk_records/r4_00006.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_00003.parquet +3 -0
  33. chunk_records/r5_00004.parquet +3 -0
  34. chunk_records/r5_00006.parquet +3 -0
  35. chunk_records/r6_00001.parquet +3 -0
  36. chunk_records/r6_00002.parquet +3 -0
  37. chunk_records/r6_00003.parquet +3 -0
  38. chunk_records/r6_00004.parquet +3 -0
  39. chunk_records/r6_00005.parquet +3 -0
  40. chunk_records/r6_00006.parquet +3 -0
  41. chunk_records/r7_00000.parquet +3 -0
  42. chunk_records/r7_00001.parquet +3 -0
  43. chunk_records/r7_00002.parquet +3 -0
  44. chunk_records/r7_00003.parquet +3 -0
  45. chunk_records/r7_00004.parquet +3 -0
  46. chunk_records/r7_00005.parquet +3 -0
  47. chunk_records/r7_00006.parquet +3 -0
  48. dataset_manifest.json +424 -0
  49. qdrant_snapshots/collections_manifest.json +158 -0
  50. question_metadata/r0_00000.parquet +3 -0
README.md ADDED
@@ -0,0 +1,137 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - vector-database
4
+ - embeddings
5
+ - parquet
6
+ - qdrant
7
+ - stackoverflow
8
+ - question-answering
9
+ pretty_name: StackOverflow Vector Dataset - Python
10
+ license: cc-by-sa-4.0
11
+ size_categories:
12
+ - 1M<n<10M
13
+ ---
14
+
15
+ # Python StackOverflow Vector Dataset
16
+
17
+ ## Summary
18
+
19
+ This repository contains the Python shard of the Stack2Graph vector retrieval dataset.
20
+ Each Hugging Face dataset repository contains one programming-language shard and is intended to restore or rebuild the Qdrant collection `stackoverflow_python_vector`.
21
+
22
+ The dataset is the vector counterpart to the Stack2Graph RDF knowledge graph. It is designed for hybrid retrieval, graph entry-point finding, and retrieval-augmented generation experiments over Stack Overflow content.
23
+
24
+ Stack2Graph source:
25
+ [https://github.com/tha-atlas/Stack2Graph](https://github.com/tha-atlas/Stack2Graph)
26
+
27
+ ## Repository Layout
28
+
29
+ ```text
30
+ README.md
31
+ dataset_manifest.json
32
+ qdrant_snapshots/
33
+ collections_manifest.json
34
+ stackoverflow_python_vector.tar.zst
35
+ stackoverflow_python_vector.snapshot.zst.part_000
36
+ ...
37
+ question_metadata/
38
+ r0_00000.parquet
39
+ chunk_records/
40
+ r0_00000.parquet
41
+ question_records/
42
+ r0_00000.parquet
43
+ ```
44
+
45
+ - `dataset_manifest.json`: language-scoped manifest listing the files in this shard.
46
+ - `qdrant_snapshots/collections_manifest.json`: language-scoped Qdrant snapshot manifest.
47
+ - `qdrant_snapshots/stackoverflow_python_vector.*`: optional Qdrant restore artifact files for `stackoverflow_python_vector`.
48
+ - `question_metadata/*.parquet`: question-level metadata used by parent-child chunk retrieval.
49
+ - `chunk_records/*.parquet`: chunk-level vector rows when parent-child indexing is enabled.
50
+ - `question_records/*.parquet`: question-level vector rows when non-chunked export is used.
51
+
52
+ The Hugging Face upload is one repository per language. During upload, the local leading language directory is removed, so local files such as `python/chunk_records/r0_00000.parquet` appear in this repository as `chunk_records/r0_00000.parquet`.
53
+
54
+ ## Data Model
55
+
56
+ Rows are derived from Stack Overflow questions tagged for Python.
57
+
58
+ The current Stack2Graph vector pipeline uses:
59
+
60
+ - dense vectors from `Qwen/Qwen3-Embedding-8B`
61
+ - 4096-dimensional dense embeddings with last-token pooling
62
+ - instruction-aware query embedding for retrieval
63
+ - sparse lexical vectors from `BAAI/bge-m3`
64
+ - unified question text containing title, tags, cleaned problem text, and code
65
+ - optional parent-child indexing where chunk hits collapse back to parent question IDs
66
+
67
+ When Qdrant snapshots are included, they are the fastest restore path. The Parquet files remain the portable fallback for rebuilding the collection.
68
+
69
+ ## Coverage
70
+
71
+ This repository contains only the Python shard. A Stack Overflow question can appear in more than one language shard when it has multiple programming-language tags.
72
+
73
+ The dataset is not a complete Stack Overflow mirror. Full question and answer graph context lives in the corresponding Stack2Graph knowledge graph artifacts; the vector dataset stores retrieval rows, vectors, sparse weights, and routing metadata.
74
+
75
+ ## Recommended Use
76
+
77
+ Use this dataset for:
78
+
79
+ - semantic and hybrid retrieval
80
+ - Qdrant restore or ingestion tests
81
+ - Stack2Graph RAG experiments
82
+ - graph entry-point retrieval before QLever graph expansion
83
+ - vector database benchmarking and diagnostics
84
+
85
+ This dataset is not intended as a standalone supervised training dataset.
86
+
87
+ ## Restore With Stack2Graph
88
+
89
+ You do not need to regenerate embeddings to use this dataset.
90
+
91
+ Typical workflow:
92
+
93
+ 1. Clone Stack2Graph and configure `.env` with service paths and HF token.
94
+ 2. Start local services:
95
+
96
+ ```bash
97
+ docker compose up -d
98
+ ```
99
+
100
+ 3. Download and restore vector artifacts:
101
+
102
+ ```bash
103
+ python -m experiment.sources.hf --skip-kg
104
+ ```
105
+
106
+ The loader restores Qdrant snapshots when present and falls back to Parquet ingestion when snapshots are unavailable.
107
+
108
+ ## Manual Use
109
+
110
+ For manual use, inspect `dataset_manifest.json`, then either:
111
+
112
+ - restore the Qdrant snapshot artifacts under `qdrant_snapshots/`, or
113
+ - ingest the listed Parquet shards into a compatible vector database.
114
+
115
+ The target Qdrant collection name is:
116
+
117
+ ```text
118
+ stackoverflow_python_vector
119
+ ```
120
+
121
+ ## Quality Notes
122
+
123
+ - Embedding quality depends on the configured Stack2Graph export pipeline and model versions.
124
+ - Sparse text can be generated from the same unified text as dense embeddings or from a lexical variant, depending on export configuration.
125
+ - Community-generated Stack Overflow content may contain errors, outdated information, bias, or incomplete answers.
126
+ - Rebuilding from Parquet may produce operational differences if Qdrant collection settings differ from the original export.
127
+
128
+ ## License And Attribution
129
+
130
+ This dataset is derived from Stack Overflow content and is distributed under `CC-BY-SA-4.0`.
131
+ Preserve required attribution and license notices when redistributing derived artifacts.
132
+
133
+ ## Citation
134
+
135
+ If you use this dataset, cite the Stack2Graph project and preserve Stack Overflow attribution requirements:
136
+
137
+ - 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:3acd435ce406f3f57b0b3cb378e50e15cc09fa0ed6a17701665027ee76d62b15
3
+ size 367126934
chunk_records/r0_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b3779b332f9a1d7ed0366efeb53c2b42fec96994d0cb4a519483f01740175546
3
+ size 368621212
chunk_records/r0_00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:54763a01a1fffb608ff44aeb58a495cf7541c79044f35a10f720895a477e4a95
3
+ size 367634812
chunk_records/r0_00003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a8239c34f187589cc5aef000d72f9900a821bd50c128bc89525ef8585a9bbcb
3
+ size 368132015
chunk_records/r0_00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7abe2177de8e3ecf42d297d57a5697afe95fed949f0ae991665e68327de62b96
3
+ size 367554568
chunk_records/r0_00006.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:31343ed8b2bb655387cbd80c65baa7bc79c28fcabfabb18d124e9a9eafb469a1
3
+ size 89199351
chunk_records/r1_00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c7ed8ccfb433d66b4b5e6e7cf90efe83401c2f5b0d637604ea981ba9e90e8c3a
3
+ size 367189565
chunk_records/r1_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:756538839d422ffc7f6adb781bd9680e8f81d78961896a1fa4e5c310ede9f4ce
3
+ size 368650219
chunk_records/r1_00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:785668cc90b77cd726186914117e33ad30ff36566ef127c20aa186f6b1165190
3
+ size 367676931
chunk_records/r1_00003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28d3b1b79ba1c9c0491eb06a4df536c65f82e0faee915d05c70545c620f5504b
3
+ size 368291902
chunk_records/r1_00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:39a3d6f100949c35d6619f6b848168f4084864ab116a85e31638b601e0a4dfd3
3
+ size 367464581
chunk_records/r1_00005.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9fb2e36d8b400c3e694c47cc1bdbd357844f08b174f960241fa67e3f3707d36d
3
+ size 366327085
chunk_records/r1_00006.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b1fcc12ae858a982f2d00dc572bcf366d8dfc6d3af2793f3662d9b0619a52cdc
3
+ size 89191254
chunk_records/r2_00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:499a5b0c1e1c84185108dd75f0175c9158190a5f1207e4d74f9859b13b3b6431
3
+ size 367604636
chunk_records/r2_00005.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ba6d6d09824b8f16bd8a2d5b5adfcb8ef679cdf5c654e8bc43ac1c5e86768a54
3
+ size 366325034
chunk_records/r2_00006.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d457935d11b4b4023255f1cbe12ca1a13acfd972852ae313a924cfe98c28d8d9
3
+ size 89218428
chunk_records/r3_00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3cd85da55001408f236adfc338d5b9b4eba28afaa56eba85353c96d45514700c
3
+ size 367014850
chunk_records/r3_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5fa668eeb629dda05d418c37f62fd959c4b703d99e76ea35810c48d049582efc
3
+ size 368578308
chunk_records/r3_00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5408c886825ea94d89fc8c0df2e08f6e2e598bc9c68577e94de6b84e0956eb8a
3
+ size 367614465
chunk_records/r3_00003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7d7c7d170f617c58accec85fa032b3daad3e24df16a1dce1d339779b62419345
3
+ size 368234298
chunk_records/r3_00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e6d0df68bdd07bd6e3ac0c90e86aa8b4d49a2d1afa466bb45d1732d9076f7ecf
3
+ size 367537981
chunk_records/r3_00006.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2b0acc0ff47c7bf2350762791cbcecc035d71a6877b58e52cf75964945295b0c
3
+ size 89205984
chunk_records/r4_00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a0cd511095f3f2ebbb1d3303a9bdcb420c2c04e44b9e5695d29ba73c23be7b0
3
+ size 367332088
chunk_records/r4_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e966b693dc106fe3c3fec6d291d6dba0bab2bc6563854200a4bb22f4f608bd9
3
+ size 368668564
chunk_records/r4_00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1eb7e4be46c60fb05e34be6ffdce06df57ef1ef252a281121ac2c6bceceda752
3
+ size 367504668
chunk_records/r4_00005.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e68a65bf2d822ad814c13245d5da2a6e8b26d5d0667443aa5f204e052641d06a
3
+ size 366315113
chunk_records/r4_00006.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e8b378d0dd39472976919ac1f5d75b1597ef6482c0f57c6ea0fc65c6ee7a395
3
+ size 89191814
chunk_records/r5_00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb31ac7af910c885438eb5688d388027b1dd1655bf42336dc33a94caec484ee5
3
+ size 367173000
chunk_records/r5_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:32b1287ea6f03f96b69ca66c4628839be7ae7198be89ea500a370fc8528ec093
3
+ size 368688899
chunk_records/r5_00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:07dd4967db21816a4613f41a60b20e7b75ada199afd6471c8c15af3459e404c1
3
+ size 367676721
chunk_records/r5_00003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fe65c89ee924b2bda5e3f52f96ee6c5211daade537b7a88eafd989d25cfe6c43
3
+ size 368210460
chunk_records/r5_00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df38235f298a454d335e50bc1ff4c98cc79cfbd431911835689eeb11f548fa06
3
+ size 367530289
chunk_records/r5_00006.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:535f1a37a8cc981d3bc49f307ae6d55dd1f376457cecb2e2d974745d55245ec7
3
+ size 89203480
chunk_records/r6_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0697d21c21a3eca6eaee5b17000d9259c316174696f46fa0ba903d2c73434c8f
3
+ size 368645510
chunk_records/r6_00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:607bb54bccecb69683899cf597569e2068a4657cf63e490709cfe6dd86206ef6
3
+ size 367699602
chunk_records/r6_00003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0eaecad10b9d4088b5937edd86cd9bb8577170bdfa22a69f77260473fd85c561
3
+ size 368241020
chunk_records/r6_00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a8a26995ebc2b0329b108ab86e7944164f0b50168430e0596017930a6d5e9fff
3
+ size 367515927
chunk_records/r6_00005.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:51d094304361a9f889073195909fc305c3482bf7d981dee8809e7931344a3283
3
+ size 366343722
chunk_records/r6_00006.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:67f38a7f2354d302a8fc770dfdf5230ef22ef301efa4f96d1a66166bf5e4cb84
3
+ size 89149143
chunk_records/r7_00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:63bf33f44d2f118b1c73893f65e4fef69cc1dd73eabe7f5d57f8d0ec1b56099f
3
+ size 367427826
chunk_records/r7_00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:54b5969515d96b32b9f424afd098d4d5a97ebd63e47847e48c9558613943d839
3
+ size 368698777
chunk_records/r7_00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:52edd04113c2caa81736eac771ff01c43ecaed5af52f0e911bab1cab1cfc3540
3
+ size 367698232
chunk_records/r7_00003.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6a0496681187189f11ec0c2bf116fe7a5ab8d52c6fb4007e1a9d8e93e3dae12
3
+ size 368189727
chunk_records/r7_00004.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f78efbd789e556ea86ed7aa0e7b20e5d9f4ada6524ea95aeff6f0bb86f20ae3
3
+ size 367513350
chunk_records/r7_00005.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:137f9b7a9745f61e136c4dc2be6acac8d8caa58d85ab885eb98259fd94b57fb0
3
+ size 366312364
chunk_records/r7_00006.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4a252a7fe87860444809a91c459ce48765082b0ac2aee0ad724d023b9f08eab0
3
+ size 89198186
dataset_manifest.json ADDED
@@ -0,0 +1,424 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "file_count": 57,
3
+ "files": [
4
+ {
5
+ "category": "chunk_records",
6
+ "language": "python",
7
+ "relative_path": "chunk_records/r0_00000.parquet",
8
+ "rows": 58912
9
+ },
10
+ {
11
+ "category": "chunk_records",
12
+ "language": "python",
13
+ "relative_path": "chunk_records/r0_00001.parquet",
14
+ "rows": 58240
15
+ },
16
+ {
17
+ "category": "chunk_records",
18
+ "language": "python",
19
+ "relative_path": "chunk_records/r0_00002.parquet",
20
+ "rows": 57568
21
+ },
22
+ {
23
+ "category": "chunk_records",
24
+ "language": "python",
25
+ "relative_path": "chunk_records/r0_00003.parquet",
26
+ "rows": 57120
27
+ },
28
+ {
29
+ "category": "chunk_records",
30
+ "language": "python",
31
+ "relative_path": "chunk_records/r0_00004.parquet",
32
+ "rows": 56448
33
+ },
34
+ {
35
+ "category": "chunk_records",
36
+ "language": "python",
37
+ "relative_path": "chunk_records/r0_00005.parquet",
38
+ "rows": 56000
39
+ },
40
+ {
41
+ "category": "chunk_records",
42
+ "language": "python",
43
+ "relative_path": "chunk_records/r0_00006.parquet",
44
+ "rows": 13592
45
+ },
46
+ {
47
+ "category": "chunk_records",
48
+ "language": "python",
49
+ "relative_path": "chunk_records/r1_00000.parquet",
50
+ "rows": 58912
51
+ },
52
+ {
53
+ "category": "chunk_records",
54
+ "language": "python",
55
+ "relative_path": "chunk_records/r1_00001.parquet",
56
+ "rows": 58240
57
+ },
58
+ {
59
+ "category": "chunk_records",
60
+ "language": "python",
61
+ "relative_path": "chunk_records/r1_00002.parquet",
62
+ "rows": 57568
63
+ },
64
+ {
65
+ "category": "chunk_records",
66
+ "language": "python",
67
+ "relative_path": "chunk_records/r1_00003.parquet",
68
+ "rows": 57120
69
+ },
70
+ {
71
+ "category": "chunk_records",
72
+ "language": "python",
73
+ "relative_path": "chunk_records/r1_00004.parquet",
74
+ "rows": 56448
75
+ },
76
+ {
77
+ "category": "chunk_records",
78
+ "language": "python",
79
+ "relative_path": "chunk_records/r1_00005.parquet",
80
+ "rows": 56000
81
+ },
82
+ {
83
+ "category": "chunk_records",
84
+ "language": "python",
85
+ "relative_path": "chunk_records/r1_00006.parquet",
86
+ "rows": 13592
87
+ },
88
+ {
89
+ "category": "chunk_records",
90
+ "language": "python",
91
+ "relative_path": "chunk_records/r2_00000.parquet",
92
+ "rows": 58912
93
+ },
94
+ {
95
+ "category": "chunk_records",
96
+ "language": "python",
97
+ "relative_path": "chunk_records/r2_00001.parquet",
98
+ "rows": 58240
99
+ },
100
+ {
101
+ "category": "chunk_records",
102
+ "language": "python",
103
+ "relative_path": "chunk_records/r2_00002.parquet",
104
+ "rows": 57568
105
+ },
106
+ {
107
+ "category": "chunk_records",
108
+ "language": "python",
109
+ "relative_path": "chunk_records/r2_00003.parquet",
110
+ "rows": 57120
111
+ },
112
+ {
113
+ "category": "chunk_records",
114
+ "language": "python",
115
+ "relative_path": "chunk_records/r2_00004.parquet",
116
+ "rows": 56448
117
+ },
118
+ {
119
+ "category": "chunk_records",
120
+ "language": "python",
121
+ "relative_path": "chunk_records/r2_00005.parquet",
122
+ "rows": 56000
123
+ },
124
+ {
125
+ "category": "chunk_records",
126
+ "language": "python",
127
+ "relative_path": "chunk_records/r2_00006.parquet",
128
+ "rows": 13592
129
+ },
130
+ {
131
+ "category": "chunk_records",
132
+ "language": "python",
133
+ "relative_path": "chunk_records/r3_00000.parquet",
134
+ "rows": 58912
135
+ },
136
+ {
137
+ "category": "chunk_records",
138
+ "language": "python",
139
+ "relative_path": "chunk_records/r3_00001.parquet",
140
+ "rows": 58240
141
+ },
142
+ {
143
+ "category": "chunk_records",
144
+ "language": "python",
145
+ "relative_path": "chunk_records/r3_00002.parquet",
146
+ "rows": 57568
147
+ },
148
+ {
149
+ "category": "chunk_records",
150
+ "language": "python",
151
+ "relative_path": "chunk_records/r3_00003.parquet",
152
+ "rows": 57120
153
+ },
154
+ {
155
+ "category": "chunk_records",
156
+ "language": "python",
157
+ "relative_path": "chunk_records/r3_00004.parquet",
158
+ "rows": 56448
159
+ },
160
+ {
161
+ "category": "chunk_records",
162
+ "language": "python",
163
+ "relative_path": "chunk_records/r3_00005.parquet",
164
+ "rows": 56000
165
+ },
166
+ {
167
+ "category": "chunk_records",
168
+ "language": "python",
169
+ "relative_path": "chunk_records/r3_00006.parquet",
170
+ "rows": 13592
171
+ },
172
+ {
173
+ "category": "chunk_records",
174
+ "language": "python",
175
+ "relative_path": "chunk_records/r4_00000.parquet",
176
+ "rows": 58912
177
+ },
178
+ {
179
+ "category": "chunk_records",
180
+ "language": "python",
181
+ "relative_path": "chunk_records/r4_00001.parquet",
182
+ "rows": 58240
183
+ },
184
+ {
185
+ "category": "chunk_records",
186
+ "language": "python",
187
+ "relative_path": "chunk_records/r4_00002.parquet",
188
+ "rows": 57568
189
+ },
190
+ {
191
+ "category": "chunk_records",
192
+ "language": "python",
193
+ "relative_path": "chunk_records/r4_00003.parquet",
194
+ "rows": 57120
195
+ },
196
+ {
197
+ "category": "chunk_records",
198
+ "language": "python",
199
+ "relative_path": "chunk_records/r4_00004.parquet",
200
+ "rows": 56448
201
+ },
202
+ {
203
+ "category": "chunk_records",
204
+ "language": "python",
205
+ "relative_path": "chunk_records/r4_00005.parquet",
206
+ "rows": 56000
207
+ },
208
+ {
209
+ "category": "chunk_records",
210
+ "language": "python",
211
+ "relative_path": "chunk_records/r4_00006.parquet",
212
+ "rows": 13591
213
+ },
214
+ {
215
+ "category": "chunk_records",
216
+ "language": "python",
217
+ "relative_path": "chunk_records/r5_00000.parquet",
218
+ "rows": 58912
219
+ },
220
+ {
221
+ "category": "chunk_records",
222
+ "language": "python",
223
+ "relative_path": "chunk_records/r5_00001.parquet",
224
+ "rows": 58240
225
+ },
226
+ {
227
+ "category": "chunk_records",
228
+ "language": "python",
229
+ "relative_path": "chunk_records/r5_00002.parquet",
230
+ "rows": 57568
231
+ },
232
+ {
233
+ "category": "chunk_records",
234
+ "language": "python",
235
+ "relative_path": "chunk_records/r5_00003.parquet",
236
+ "rows": 57120
237
+ },
238
+ {
239
+ "category": "chunk_records",
240
+ "language": "python",
241
+ "relative_path": "chunk_records/r5_00004.parquet",
242
+ "rows": 56448
243
+ },
244
+ {
245
+ "category": "chunk_records",
246
+ "language": "python",
247
+ "relative_path": "chunk_records/r5_00005.parquet",
248
+ "rows": 56000
249
+ },
250
+ {
251
+ "category": "chunk_records",
252
+ "language": "python",
253
+ "relative_path": "chunk_records/r5_00006.parquet",
254
+ "rows": 13591
255
+ },
256
+ {
257
+ "category": "chunk_records",
258
+ "language": "python",
259
+ "relative_path": "chunk_records/r6_00000.parquet",
260
+ "rows": 58912
261
+ },
262
+ {
263
+ "category": "chunk_records",
264
+ "language": "python",
265
+ "relative_path": "chunk_records/r6_00001.parquet",
266
+ "rows": 58240
267
+ },
268
+ {
269
+ "category": "chunk_records",
270
+ "language": "python",
271
+ "relative_path": "chunk_records/r6_00002.parquet",
272
+ "rows": 57568
273
+ },
274
+ {
275
+ "category": "chunk_records",
276
+ "language": "python",
277
+ "relative_path": "chunk_records/r6_00003.parquet",
278
+ "rows": 57120
279
+ },
280
+ {
281
+ "category": "chunk_records",
282
+ "language": "python",
283
+ "relative_path": "chunk_records/r6_00004.parquet",
284
+ "rows": 56448
285
+ },
286
+ {
287
+ "category": "chunk_records",
288
+ "language": "python",
289
+ "relative_path": "chunk_records/r6_00005.parquet",
290
+ "rows": 56000
291
+ },
292
+ {
293
+ "category": "chunk_records",
294
+ "language": "python",
295
+ "relative_path": "chunk_records/r6_00006.parquet",
296
+ "rows": 13591
297
+ },
298
+ {
299
+ "category": "chunk_records",
300
+ "language": "python",
301
+ "relative_path": "chunk_records/r7_00000.parquet",
302
+ "rows": 58912
303
+ },
304
+ {
305
+ "category": "chunk_records",
306
+ "language": "python",
307
+ "relative_path": "chunk_records/r7_00001.parquet",
308
+ "rows": 58240
309
+ },
310
+ {
311
+ "category": "chunk_records",
312
+ "language": "python",
313
+ "relative_path": "chunk_records/r7_00002.parquet",
314
+ "rows": 57568
315
+ },
316
+ {
317
+ "category": "chunk_records",
318
+ "language": "python",
319
+ "relative_path": "chunk_records/r7_00003.parquet",
320
+ "rows": 57120
321
+ },
322
+ {
323
+ "category": "chunk_records",
324
+ "language": "python",
325
+ "relative_path": "chunk_records/r7_00004.parquet",
326
+ "rows": 56448
327
+ },
328
+ {
329
+ "category": "chunk_records",
330
+ "language": "python",
331
+ "relative_path": "chunk_records/r7_00005.parquet",
332
+ "rows": 56000
333
+ },
334
+ {
335
+ "category": "chunk_records",
336
+ "language": "python",
337
+ "relative_path": "chunk_records/r7_00006.parquet",
338
+ "rows": 13591
339
+ },
340
+ {
341
+ "category": "question_metadata",
342
+ "language": "python",
343
+ "relative_path": "question_metadata/r0_00000.parquet",
344
+ "rows": 2212437
345
+ }
346
+ ],
347
+ "language": "python",
348
+ "qdrant_snapshot": {
349
+ "artifact_files": [
350
+ "stackoverflow_python_vector.snapshot.zst.part_000",
351
+ "stackoverflow_python_vector.snapshot.zst.part_001",
352
+ "stackoverflow_python_vector.snapshot.zst.part_002",
353
+ "stackoverflow_python_vector.snapshot.zst.part_003",
354
+ "stackoverflow_python_vector.snapshot.zst.part_004",
355
+ "stackoverflow_python_vector.snapshot.zst.part_005",
356
+ "stackoverflow_python_vector.snapshot.zst.part_006",
357
+ "stackoverflow_python_vector.snapshot.zst.part_007",
358
+ "stackoverflow_python_vector.snapshot.zst.part_008",
359
+ "stackoverflow_python_vector.snapshot.zst.part_009",
360
+ "stackoverflow_python_vector.snapshot.zst.part_010",
361
+ "stackoverflow_python_vector.snapshot.zst.part_011",
362
+ "stackoverflow_python_vector.snapshot.zst.part_012",
363
+ "stackoverflow_python_vector.snapshot.zst.part_013",
364
+ "stackoverflow_python_vector.snapshot.zst.part_014",
365
+ "stackoverflow_python_vector.snapshot.zst.part_015",
366
+ "stackoverflow_python_vector.snapshot.zst.part_016",
367
+ "stackoverflow_python_vector.snapshot.zst.part_017",
368
+ "stackoverflow_python_vector.snapshot.zst.part_018",
369
+ "stackoverflow_python_vector.snapshot.zst.part_019",
370
+ "stackoverflow_python_vector.snapshot.zst.part_020",
371
+ "stackoverflow_python_vector.snapshot.zst.part_021",
372
+ "stackoverflow_python_vector.snapshot.zst.part_022",
373
+ "stackoverflow_python_vector.snapshot.zst.part_023",
374
+ "stackoverflow_python_vector.snapshot.zst.part_024",
375
+ "stackoverflow_python_vector.snapshot.zst.part_025",
376
+ "stackoverflow_python_vector.snapshot.zst.part_026",
377
+ "stackoverflow_python_vector.snapshot.zst.part_027",
378
+ "stackoverflow_python_vector.snapshot.zst.part_028",
379
+ "stackoverflow_python_vector.snapshot.zst.part_029",
380
+ "stackoverflow_python_vector.snapshot.zst.part_030",
381
+ "stackoverflow_python_vector.snapshot.zst.part_031",
382
+ "stackoverflow_python_vector.snapshot.zst.part_032",
383
+ "stackoverflow_python_vector.snapshot.zst.part_033",
384
+ "stackoverflow_python_vector.snapshot.zst.part_034",
385
+ "stackoverflow_python_vector.snapshot.zst.part_035",
386
+ "stackoverflow_python_vector.snapshot.zst.part_036",
387
+ "stackoverflow_python_vector.snapshot.zst.part_037",
388
+ "stackoverflow_python_vector.snapshot.zst.part_038",
389
+ "stackoverflow_python_vector.snapshot.zst.part_039",
390
+ "stackoverflow_python_vector.snapshot.zst.part_040",
391
+ "stackoverflow_python_vector.snapshot.zst.part_041",
392
+ "stackoverflow_python_vector.snapshot.zst.part_042",
393
+ "stackoverflow_python_vector.snapshot.zst.part_043",
394
+ "stackoverflow_python_vector.snapshot.zst.part_044",
395
+ "stackoverflow_python_vector.snapshot.zst.part_045",
396
+ "stackoverflow_python_vector.snapshot.zst.part_046",
397
+ "stackoverflow_python_vector.snapshot.zst.part_047",
398
+ "stackoverflow_python_vector.snapshot.zst.part_048",
399
+ "stackoverflow_python_vector.snapshot.zst.part_049",
400
+ "stackoverflow_python_vector.snapshot.zst.part_050",
401
+ "stackoverflow_python_vector.snapshot.zst.part_051",
402
+ "stackoverflow_python_vector.snapshot.zst.part_052",
403
+ "stackoverflow_python_vector.snapshot.zst.part_053",
404
+ "stackoverflow_python_vector.snapshot.zst.part_054",
405
+ "stackoverflow_python_vector.snapshot.zst.part_055",
406
+ "stackoverflow_python_vector.snapshot.zst.part_056",
407
+ "stackoverflow_python_vector.snapshot.zst.part_057",
408
+ "stackoverflow_python_vector.snapshot.zst.part_058",
409
+ "stackoverflow_python_vector.snapshot.zst.part_059",
410
+ "stackoverflow_python_vector.snapshot.zst.part_060",
411
+ "stackoverflow_python_vector.snapshot.zst.part_061",
412
+ "stackoverflow_python_vector.snapshot.zst.part_062",
413
+ "stackoverflow_python_vector.snapshot.zst.part_063",
414
+ "stackoverflow_python_vector.snapshot.zst.part_064"
415
+ ],
416
+ "artifact_format": "zstd_split",
417
+ "collection_name": "stackoverflow_python_vector",
418
+ "manifest_path": "/var/stackoverflow_data/vector_dataset_archives/hf_upload_folder/python/qdrant_snapshots/collections_manifest.json",
419
+ "points_count": 2863036,
420
+ "snapshot_file": "snapshots/stackoverflow_python_vector.snapshot"
421
+ },
422
+ "source": "vector_dataset_language_folder",
423
+ "total_rows": 5075473
424
+ }
qdrant_snapshots/collections_manifest.json ADDED
@@ -0,0 +1,158 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "archive_dir": "archives",
3
+ "archive_format": "mixed",
4
+ "archive_parts": [],
5
+ "archive_size_limit_bytes": 1000000000,
6
+ "collection_glob": "stackoverflow_python_vector",
7
+ "collections": [
8
+ {
9
+ "archive_file": null,
10
+ "artifact_files": [
11
+ "archives/stackoverflow_python_vector.snapshot.zst.part_000",
12
+ "archives/stackoverflow_python_vector.snapshot.zst.part_001",
13
+ "archives/stackoverflow_python_vector.snapshot.zst.part_002",
14
+ "archives/stackoverflow_python_vector.snapshot.zst.part_003",
15
+ "archives/stackoverflow_python_vector.snapshot.zst.part_004",
16
+ "archives/stackoverflow_python_vector.snapshot.zst.part_005",
17
+ "archives/stackoverflow_python_vector.snapshot.zst.part_006",
18
+ "archives/stackoverflow_python_vector.snapshot.zst.part_007",
19
+ "archives/stackoverflow_python_vector.snapshot.zst.part_008",
20
+ "archives/stackoverflow_python_vector.snapshot.zst.part_009",
21
+ "archives/stackoverflow_python_vector.snapshot.zst.part_010",
22
+ "archives/stackoverflow_python_vector.snapshot.zst.part_011",
23
+ "archives/stackoverflow_python_vector.snapshot.zst.part_012",
24
+ "archives/stackoverflow_python_vector.snapshot.zst.part_013",
25
+ "archives/stackoverflow_python_vector.snapshot.zst.part_014",
26
+ "archives/stackoverflow_python_vector.snapshot.zst.part_015",
27
+ "archives/stackoverflow_python_vector.snapshot.zst.part_016",
28
+ "archives/stackoverflow_python_vector.snapshot.zst.part_017",
29
+ "archives/stackoverflow_python_vector.snapshot.zst.part_018",
30
+ "archives/stackoverflow_python_vector.snapshot.zst.part_019",
31
+ "archives/stackoverflow_python_vector.snapshot.zst.part_020",
32
+ "archives/stackoverflow_python_vector.snapshot.zst.part_021",
33
+ "archives/stackoverflow_python_vector.snapshot.zst.part_022",
34
+ "archives/stackoverflow_python_vector.snapshot.zst.part_023",
35
+ "archives/stackoverflow_python_vector.snapshot.zst.part_024",
36
+ "archives/stackoverflow_python_vector.snapshot.zst.part_025",
37
+ "archives/stackoverflow_python_vector.snapshot.zst.part_026",
38
+ "archives/stackoverflow_python_vector.snapshot.zst.part_027",
39
+ "archives/stackoverflow_python_vector.snapshot.zst.part_028",
40
+ "archives/stackoverflow_python_vector.snapshot.zst.part_029",
41
+ "archives/stackoverflow_python_vector.snapshot.zst.part_030",
42
+ "archives/stackoverflow_python_vector.snapshot.zst.part_031",
43
+ "archives/stackoverflow_python_vector.snapshot.zst.part_032",
44
+ "archives/stackoverflow_python_vector.snapshot.zst.part_033",
45
+ "archives/stackoverflow_python_vector.snapshot.zst.part_034",
46
+ "archives/stackoverflow_python_vector.snapshot.zst.part_035",
47
+ "archives/stackoverflow_python_vector.snapshot.zst.part_036",
48
+ "archives/stackoverflow_python_vector.snapshot.zst.part_037",
49
+ "archives/stackoverflow_python_vector.snapshot.zst.part_038",
50
+ "archives/stackoverflow_python_vector.snapshot.zst.part_039",
51
+ "archives/stackoverflow_python_vector.snapshot.zst.part_040",
52
+ "archives/stackoverflow_python_vector.snapshot.zst.part_041",
53
+ "archives/stackoverflow_python_vector.snapshot.zst.part_042",
54
+ "archives/stackoverflow_python_vector.snapshot.zst.part_043",
55
+ "archives/stackoverflow_python_vector.snapshot.zst.part_044",
56
+ "archives/stackoverflow_python_vector.snapshot.zst.part_045",
57
+ "archives/stackoverflow_python_vector.snapshot.zst.part_046",
58
+ "archives/stackoverflow_python_vector.snapshot.zst.part_047",
59
+ "archives/stackoverflow_python_vector.snapshot.zst.part_048",
60
+ "archives/stackoverflow_python_vector.snapshot.zst.part_049",
61
+ "archives/stackoverflow_python_vector.snapshot.zst.part_050",
62
+ "archives/stackoverflow_python_vector.snapshot.zst.part_051",
63
+ "archives/stackoverflow_python_vector.snapshot.zst.part_052",
64
+ "archives/stackoverflow_python_vector.snapshot.zst.part_053",
65
+ "archives/stackoverflow_python_vector.snapshot.zst.part_054",
66
+ "archives/stackoverflow_python_vector.snapshot.zst.part_055",
67
+ "archives/stackoverflow_python_vector.snapshot.zst.part_056",
68
+ "archives/stackoverflow_python_vector.snapshot.zst.part_057",
69
+ "archives/stackoverflow_python_vector.snapshot.zst.part_058",
70
+ "archives/stackoverflow_python_vector.snapshot.zst.part_059",
71
+ "archives/stackoverflow_python_vector.snapshot.zst.part_060",
72
+ "archives/stackoverflow_python_vector.snapshot.zst.part_061",
73
+ "archives/stackoverflow_python_vector.snapshot.zst.part_062",
74
+ "archives/stackoverflow_python_vector.snapshot.zst.part_063",
75
+ "archives/stackoverflow_python_vector.snapshot.zst.part_064"
76
+ ],
77
+ "artifact_format": "zstd_split",
78
+ "collection_name": "stackoverflow_python_vector",
79
+ "config": {
80
+ "config": {
81
+ "hnsw_config": {
82
+ "ef_construct": 100,
83
+ "full_scan_threshold": 10000,
84
+ "m": 16,
85
+ "max_indexing_threads": 16,
86
+ "on_disk": false
87
+ },
88
+ "optimizer_config": {
89
+ "default_segment_number": 0,
90
+ "deleted_threshold": 0.2,
91
+ "flush_interval_sec": 30,
92
+ "indexing_threshold": 20000,
93
+ "vacuum_min_vector_number": 1000
94
+ },
95
+ "params": {
96
+ "on_disk_payload": true,
97
+ "replication_factor": 1,
98
+ "shard_number": 8,
99
+ "sparse_vectors": {
100
+ "sparse": {
101
+ "index": {
102
+ "on_disk": true
103
+ }
104
+ }
105
+ },
106
+ "vectors": {
107
+ "dense": {
108
+ "distance": "Cosine",
109
+ "on_disk": false,
110
+ "size": 4096
111
+ }
112
+ },
113
+ "write_consistency_factor": 1
114
+ },
115
+ "quantization_config": {
116
+ "scalar": {
117
+ "always_ram": true,
118
+ "quantile": 0.99,
119
+ "type": "int8"
120
+ }
121
+ },
122
+ "wal_config": {
123
+ "wal_capacity_mb": 256,
124
+ "wal_retain_closed": 1,
125
+ "wal_segments_ahead": 0
126
+ }
127
+ },
128
+ "indexed_vectors_count": 5726069,
129
+ "optimizer_status": "ok",
130
+ "payload_schema": {},
131
+ "points_count": 2863036,
132
+ "segments_count": 51,
133
+ "status": "green",
134
+ "update_queue": {
135
+ "length": 0
136
+ }
137
+ },
138
+ "points_count": 2863036,
139
+ "segments_count": 51,
140
+ "snapshot_file": "snapshots/stackoverflow_python_vector.snapshot",
141
+ "snapshot_name": "stackoverflow_python_vector-8271646633244964-2026-07-06-09-02-45.snapshot"
142
+ }
143
+ ],
144
+ "created_at": 1783366787,
145
+ "max_archive_parts": 1000,
146
+ "qdrant_url": "http://localhost:6333",
147
+ "snapshot_dir": "snapshots",
148
+ "snapshot_files": [
149
+ {
150
+ "checksum": "18eada1e7a9f768a36026484a3578b3927204ff9c00e273ce3c59c1583da2fc2",
151
+ "collection_name": "stackoverflow_python_vector",
152
+ "created_at": "2026-07-06T09:04:53",
153
+ "size_bytes": 65611945984,
154
+ "snapshot_file": "snapshots/stackoverflow_python_vector.snapshot",
155
+ "snapshot_name": "stackoverflow_python_vector-8271646633244964-2026-07-06-09-02-45.snapshot"
156
+ }
157
+ ]
158
+ }
question_metadata/r0_00000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:38716076d15fcc5c3f6fcf302687b013b38f945511b0374f5db46aa589b5b4ff
3
+ size 90167888