Clean StackOverflow vector language dataset before upload: julia
Browse files- README.md +0 -115
- chunk_records/r0_00000.parquet +0 -3
- chunk_records/r1_00000.parquet +0 -3
- chunk_records/r2_00000.parquet +0 -3
- chunk_records/r3_00000.parquet +0 -3
- chunk_records/r4_00000.parquet +0 -3
- chunk_records/r5_00000.parquet +0 -3
- chunk_records/r6_00000.parquet +0 -3
- chunk_records/r7_00000.parquet +0 -3
- dataset_manifest.json +0 -74
- question_metadata/r0_00000.parquet +0 -3
- question_metadata/r0_00001.parquet +0 -3
- question_metadata/r0_00002.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 - Julia
|
| 10 |
-
license: cc-by-sa-4.0
|
| 11 |
-
size_categories:
|
| 12 |
-
- 1M<n<10M
|
| 13 |
-
---
|
| 14 |
-
|
| 15 |
-
# Julia StackOverflow Vector Dataset Datasheet
|
| 16 |
-
|
| 17 |
-
## 1. What This Dataset Is
|
| 18 |
-
|
| 19 |
-
This dataset is the Julia-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 Julia 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 Julia 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_julia_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:660a01447f143e33ff20f4ec8bf15bee86c5d1b9e3851240791b32459d88ba1b
|
| 3 |
-
size 12582684
|
|
|
|
|
|
|
|
|
|
|
|
chunk_records/r1_00000.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:f8e0122ca8ec056497056dcc637739a8367338f5d960a3da407a0fc8a57e518a
|
| 3 |
-
size 12619610
|
|
|
|
|
|
|
|
|
|
|
|
chunk_records/r2_00000.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:2cfd66dcddba81343e1e70089a6b3f2ec75ff5447656f9afe2e746abb894f747
|
| 3 |
-
size 12621940
|
|
|
|
|
|
|
|
|
|
|
|
chunk_records/r3_00000.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:6748218a8c9d003152bdd7a5a6dc086544109e5b6e8b3cd201ab78d7b9dded6f
|
| 3 |
-
size 12622381
|
|
|
|
|
|
|
|
|
|
|
|
chunk_records/r4_00000.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:4c06b7023b80906dc7127daa16c52a0b9421086221b5f77fa20aa85a00abc6cc
|
| 3 |
-
size 12599214
|
|
|
|
|
|
|
|
|
|
|
|
chunk_records/r5_00000.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:0d5a32242d4c45cb4ae804cc61b36529f7d8d12aff2a42b4ecc023873b5aad39
|
| 3 |
-
size 12634316
|
|
|
|
|
|
|
|
|
|
|
|
chunk_records/r6_00000.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:0949c4e41a20ed260c04226a6a8cb8e43f98f4ad4d6e5cd372cad94722aedbba
|
| 3 |
-
size 12606189
|
|
|
|
|
|
|
|
|
|
|
|
chunk_records/r7_00000.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:081a6c62721a86b37809f05b66664d6d8b5debb27a5dd24e1a5648d954bb8ed6
|
| 3 |
-
size 12606061
|
|
|
|
|
|
|
|
|
|
|
|
dataset_manifest.json
DELETED
|
@@ -1,74 +0,0 @@
|
|
| 1 |
-
{
|
| 2 |
-
"file_count": 11,
|
| 3 |
-
"files": [
|
| 4 |
-
{
|
| 5 |
-
"category": "chunk_records",
|
| 6 |
-
"language": "julia",
|
| 7 |
-
"relative_path": "chunk_records/r0_00000.parquet",
|
| 8 |
-
"rows": 1904
|
| 9 |
-
},
|
| 10 |
-
{
|
| 11 |
-
"category": "chunk_records",
|
| 12 |
-
"language": "julia",
|
| 13 |
-
"relative_path": "chunk_records/r1_00000.parquet",
|
| 14 |
-
"rows": 1904
|
| 15 |
-
},
|
| 16 |
-
{
|
| 17 |
-
"category": "chunk_records",
|
| 18 |
-
"language": "julia",
|
| 19 |
-
"relative_path": "chunk_records/r2_00000.parquet",
|
| 20 |
-
"rows": 1904
|
| 21 |
-
},
|
| 22 |
-
{
|
| 23 |
-
"category": "chunk_records",
|
| 24 |
-
"language": "julia",
|
| 25 |
-
"relative_path": "chunk_records/r3_00000.parquet",
|
| 26 |
-
"rows": 1903
|
| 27 |
-
},
|
| 28 |
-
{
|
| 29 |
-
"category": "chunk_records",
|
| 30 |
-
"language": "julia",
|
| 31 |
-
"relative_path": "chunk_records/r4_00000.parquet",
|
| 32 |
-
"rows": 1903
|
| 33 |
-
},
|
| 34 |
-
{
|
| 35 |
-
"category": "chunk_records",
|
| 36 |
-
"language": "julia",
|
| 37 |
-
"relative_path": "chunk_records/r5_00000.parquet",
|
| 38 |
-
"rows": 1903
|
| 39 |
-
},
|
| 40 |
-
{
|
| 41 |
-
"category": "chunk_records",
|
| 42 |
-
"language": "julia",
|
| 43 |
-
"relative_path": "chunk_records/r6_00000.parquet",
|
| 44 |
-
"rows": 1903
|
| 45 |
-
},
|
| 46 |
-
{
|
| 47 |
-
"category": "chunk_records",
|
| 48 |
-
"language": "julia",
|
| 49 |
-
"relative_path": "chunk_records/r7_00000.parquet",
|
| 50 |
-
"rows": 1903
|
| 51 |
-
},
|
| 52 |
-
{
|
| 53 |
-
"category": "question_metadata",
|
| 54 |
-
"language": "julia",
|
| 55 |
-
"relative_path": "question_metadata/r0_00000.parquet",
|
| 56 |
-
"rows": 5000
|
| 57 |
-
},
|
| 58 |
-
{
|
| 59 |
-
"category": "question_metadata",
|
| 60 |
-
"language": "julia",
|
| 61 |
-
"relative_path": "question_metadata/r0_00001.parquet",
|
| 62 |
-
"rows": 5000
|
| 63 |
-
},
|
| 64 |
-
{
|
| 65 |
-
"category": "question_metadata",
|
| 66 |
-
"language": "julia",
|
| 67 |
-
"relative_path": "question_metadata/r0_00002.parquet",
|
| 68 |
-
"rows": 2840
|
| 69 |
-
}
|
| 70 |
-
],
|
| 71 |
-
"language": "julia",
|
| 72 |
-
"source": "vector_dataset_language_folder",
|
| 73 |
-
"total_rows": 28067
|
| 74 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
question_metadata/r0_00000.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:d5ed995374de0a631aeb22c07c6017d93f58f0a73aed060f822e719391507f62
|
| 3 |
-
size 6670116
|
|
|
|
|
|
|
|
|
|
|
|
question_metadata/r0_00001.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:da4096501d391041e5265f12b197afba812b94a3a660f19e5a2ea35e3a0b1139
|
| 3 |
-
size 6843963
|
|
|
|
|
|
|
|
|
|
|
|
question_metadata/r0_00002.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:499519beb8a28c66597085d69af82829429a5cf702a469fd2011e21e07913c13
|
| 3 |
-
size 4078580
|
|
|
|
|
|
|
|
|
|
|
|