Datasets:
Add files using upload-large-folder tool
Browse files- README.md +115 -0
- chunk_records/r0_00000.parquet +3 -0
- chunk_records/r1_00000.parquet +3 -0
- chunk_records/r2_00000.parquet +3 -0
- chunk_records/r3_00000.parquet +3 -0
- chunk_records/r4_00000.parquet +3 -0
- chunk_records/r5_00000.parquet +3 -0
- chunk_records/r6_00000.parquet +3 -0
- chunk_records/r7_00000.parquet +3 -0
- dataset_manifest.json +68 -0
- question_metadata/r0_00000.parquet +3 -0
- question_metadata/r0_00001.parquet +3 -0
README.md
ADDED
|
@@ -0,0 +1,115 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- vector-database
|
| 4 |
+
- embeddings
|
| 5 |
+
- parquet
|
| 6 |
+
- qdrant
|
| 7 |
+
- stackoverflow
|
| 8 |
+
- question-answering
|
| 9 |
+
pretty_name: StackOverflow Vector Dataset - Elixir
|
| 10 |
+
license: cc-by-sa-4.0
|
| 11 |
+
size_categories:
|
| 12 |
+
- 1M<n<10M
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
# Elixir StackOverflow Vector Dataset Datasheet
|
| 16 |
+
|
| 17 |
+
## 1. What This Dataset Is
|
| 18 |
+
|
| 19 |
+
This dataset is the Elixir-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 Elixir 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 Elixir 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_elixir_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:8adfec62f8dd4a53b28cf5e8bd1fb25aac9f06bd0d089b6a9fa9011c0cccbb60
|
| 3 |
+
size 9972106
|
chunk_records/r1_00000.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2084df0f89a697b7186130e5a339dade7af8e25efb4e216338741d84b762c3d5
|
| 3 |
+
size 9921324
|
chunk_records/r2_00000.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9d318bf5a6a6d412e677536552e91021d36bdda88c312df6cc9b4ef6c9bd6c20
|
| 3 |
+
size 9893358
|
chunk_records/r3_00000.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7e54e2d8f20c951be240d69a6d92d465e7fa2f4d88850cf33e9c15dd4a6a9c2d
|
| 3 |
+
size 9902813
|
chunk_records/r4_00000.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aaa85c48ce0aa1bc77bc44180032f26477f045730181645ae5ddd893cc7ae683
|
| 3 |
+
size 9883242
|
chunk_records/r5_00000.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b9fb6e07ef837a09b36d6cf91572e4f2be80192b4aa3d0430cade9f949e9a3cd
|
| 3 |
+
size 9914583
|
chunk_records/r6_00000.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a692309a89d08331803b4698d57b94dfad1b2aced305ac21b45f3babaf4434c5
|
| 3 |
+
size 9899421
|
chunk_records/r7_00000.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:39373766f544ac64233ed53c2ec09984afa399bfd5ba159aeea0dcf72c665a38
|
| 3 |
+
size 9908235
|
dataset_manifest.json
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"file_count": 10,
|
| 3 |
+
"files": [
|
| 4 |
+
{
|
| 5 |
+
"category": "chunk_records",
|
| 6 |
+
"language": "elixir",
|
| 7 |
+
"relative_path": "chunk_records/r0_00000.parquet",
|
| 8 |
+
"rows": 1475
|
| 9 |
+
},
|
| 10 |
+
{
|
| 11 |
+
"category": "chunk_records",
|
| 12 |
+
"language": "elixir",
|
| 13 |
+
"relative_path": "chunk_records/r1_00000.parquet",
|
| 14 |
+
"rows": 1474
|
| 15 |
+
},
|
| 16 |
+
{
|
| 17 |
+
"category": "chunk_records",
|
| 18 |
+
"language": "elixir",
|
| 19 |
+
"relative_path": "chunk_records/r2_00000.parquet",
|
| 20 |
+
"rows": 1474
|
| 21 |
+
},
|
| 22 |
+
{
|
| 23 |
+
"category": "chunk_records",
|
| 24 |
+
"language": "elixir",
|
| 25 |
+
"relative_path": "chunk_records/r3_00000.parquet",
|
| 26 |
+
"rows": 1474
|
| 27 |
+
},
|
| 28 |
+
{
|
| 29 |
+
"category": "chunk_records",
|
| 30 |
+
"language": "elixir",
|
| 31 |
+
"relative_path": "chunk_records/r4_00000.parquet",
|
| 32 |
+
"rows": 1474
|
| 33 |
+
},
|
| 34 |
+
{
|
| 35 |
+
"category": "chunk_records",
|
| 36 |
+
"language": "elixir",
|
| 37 |
+
"relative_path": "chunk_records/r5_00000.parquet",
|
| 38 |
+
"rows": 1474
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"category": "chunk_records",
|
| 42 |
+
"language": "elixir",
|
| 43 |
+
"relative_path": "chunk_records/r6_00000.parquet",
|
| 44 |
+
"rows": 1474
|
| 45 |
+
},
|
| 46 |
+
{
|
| 47 |
+
"category": "chunk_records",
|
| 48 |
+
"language": "elixir",
|
| 49 |
+
"relative_path": "chunk_records/r7_00000.parquet",
|
| 50 |
+
"rows": 1474
|
| 51 |
+
},
|
| 52 |
+
{
|
| 53 |
+
"category": "question_metadata",
|
| 54 |
+
"language": "elixir",
|
| 55 |
+
"relative_path": "question_metadata/r0_00000.parquet",
|
| 56 |
+
"rows": 5000
|
| 57 |
+
},
|
| 58 |
+
{
|
| 59 |
+
"category": "question_metadata",
|
| 60 |
+
"language": "elixir",
|
| 61 |
+
"relative_path": "question_metadata/r0_00001.parquet",
|
| 62 |
+
"rows": 4640
|
| 63 |
+
}
|
| 64 |
+
],
|
| 65 |
+
"language": "elixir",
|
| 66 |
+
"source": "vector_dataset_language_folder",
|
| 67 |
+
"total_rows": 21433
|
| 68 |
+
}
|
question_metadata/r0_00000.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4e31b0904607990971000eeeee756c5ae24478e83dce073becee82cfb5fe7b3f
|
| 3 |
+
size 7139543
|
question_metadata/r0_00001.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6d09ce008e1b168daa7b093058af0c6b2817e21bf94f8b5942a2393c04f461cc
|
| 3 |
+
size 7189630
|