Datasets:
Tasks:
Text Generation
Modalities:
Text
Formats:
parquet
Languages:
English
Size:
10K - 100K
ArXiv:
License:
File size: 3,886 Bytes
c6e2a8d a1b36fa c6e2a8d a1b36fa c6e2a8d a1b36fa c6e2a8d a1b36fa c6e2a8d a1b36fa c6e2a8d a1b36fa c6e2a8d a1b36fa c6e2a8d a1b36fa | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 | ---
license: cc-by-nc-4.0
language:
- en
tags:
- telecom
- LLM
- ETSI
- 3GPP
- standards
- continual-pretraining
task_categories:
- text-generation
size_categories:
- 10M<n<100M
configs:
- config_name: default
data_files:
- split: train
path: data/*/*.parquet
- config_name: 3gpp-standard
data_files:
- split: train
path: data/3gpp-standard/*.parquet
- config_name: etsi-standard
data_files:
- split: train
path: data/etsi-standard/*.parquet
---
# TeleSpec-Data
## Dataset Summary
TeleSpec-Data is a dataset of telecommunications standards documents from two major bodies: ETSI and 3GPP. It is designed for continual pretraining of language models on telecom domain knowledge.
The dataset consists of two categories:
- **3gpp-standard**: 15,054 3GPP technical specifications and reports covering Release 8 through Release 19 (updated to April 2025), sourced from [TSpec-LLM](https://huggingface.co/datasets/rasoul-nikbakht/TSpec-LLM).
- **etsi-standard**: 23,248 ETSI documents spanning 15 working groups (TS, TR, EN, ES, GS, GR, EG, ETR, ETS, GTS, and others), covering years 2000–2024, extracted from the PDF corpus in [NetSpec-LLM](https://huggingface.co/datasets/rasoul-nikbakht/NetSpec-LLM).
**Total: 38,302 documents.**
## Dataset Structure
### Data Fields
- `id`: Unique identifier for each document.
- `category`: Category of the document — `3gpp-standard` or `etsi-standard`.
- `content`: Full text of the document. Sections are separated by ` \n `.
- `metadata`: JSON string with document-level metadata. Fields vary by category.
### Data Instances
An example from the 3GPP subset:
```
{
"id": "3gpp_24229_Rel-17_hc0",
"category": "3gpp-standard",
"content": "3GPP TS 24.229 Release 17 Vhc0 \n 1 Scope \n The present document specifies...",
"metadata": "{\"doc_number\": \"24229\", \"series\": \"24\", \"release\": \"17\", \"version\": \"hc0\", \"filename\": \"24229-hc0.md\", \"series_dir\": \"24_series\"}"
}
```
An example from the ETSI subset:
```
{
"id": "etsi_28737",
"category": "etsi-standard",
"content": "ETSI TS 132 371 V7.3.1 (2008-07) \n Security Management concept and requirements \n 1 Scope \n The present document specifies...",
"metadata": "{\"working_group\": \"TS\", \"year\": 2008, \"deliverable_type\": \"TS\", \"version\": \"7.3.1\", \"title\": \"Security Management concept and requirements\"}"
}
```
## Sample Code
```python
import json
from datasets import load_dataset
# Full dataset
ds = load_dataset("NareshModina/TeleSpec-Data")
# Single category
ds = load_dataset("NareshModina/TeleSpec-Data", name="etsi-standard")
ds = load_dataset("NareshModina/TeleSpec-Data", name="3gpp-standard")
sample = ds["train"][0]
print(f"ID: {sample['id']}\nCategory: {sample['category']}\nContent: {sample['content'][:200]}")
for key, value in json.loads(sample["metadata"]).items():
print(f"{key}: {value}")
```
## Citation
If you use this dataset, please cite:
```bibtex
@dataset{modina2025telespecdata,
author = {Naresh Modina},
title = {TeleSpec-Data: A Telecommunications Standards Dataset for Language Model Pretraining},
year = {2025},
publisher = {Hugging Face},
url = {https://huggingface.co/datasets/NareshModina/TeleSpec-Data}
}
```
Please also cite the upstream sources:
```bibtex
@misc{nikbakht2024tspecllm,
title = {TSpec-LLM: An Open-source Dataset for LLM Understanding of 3GPP Specifications},
author = {Rasoul Nikbakht and Mohamed Benzaghta and Giovanni Geraci},
year = {2024},
eprint = {2406.01768},
archivePrefix = {arXiv},
primaryClass = {cs.NI},
url = {https://arxiv.org/abs/2406.01768}
}
```
ETSI document corpus sourced from [rasoul-nikbakht/NetSpec-LLM](https://huggingface.co/datasets/rasoul-nikbakht/NetSpec-LLM) (CC BY-NC 4.0). |