nareshmodina commited on
Commit
c6e2a8d
·
verified ·
1 Parent(s): 9f97829

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +122 -0
README.md ADDED
@@ -0,0 +1,122 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ language:
4
+ - en
5
+ tags:
6
+ - telecom
7
+ - LLM
8
+ - ETSI
9
+ - 3GPP
10
+ - standards
11
+ - continual-pretraining
12
+ task_categories:
13
+ - text-generation
14
+ size_categories:
15
+ - 1B<n<10B
16
+ configs:
17
+ - config_name: default
18
+ data_files:
19
+ - split: train
20
+ path: data/*/*.parquet
21
+ - config_name: 3gpp-standard
22
+ data_files:
23
+ - split: train
24
+ path: data/3gpp-standard/*.parquet
25
+ - config_name: etsi-standard
26
+ data_files:
27
+ - split: train
28
+ path: data/etsi-standard/*.parquet
29
+ ---
30
+
31
+ # TeleSpec-Data
32
+
33
+ ## Dataset Summary
34
+
35
+ 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.
36
+
37
+ The dataset consists of two categories:
38
+
39
+ - **3gpp-standard**: 3GPP technical specifications and reports, sourced from the standards subset of [Tele-Data](https://huggingface.co/datasets/AliMaatouk/Tele-Data).
40
+ - **etsi-standard**: 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).
41
+
42
+ ## Dataset Structure
43
+
44
+ ### Data Fields
45
+
46
+ - `id`: Unique identifier for each document.
47
+ - `category`: Category of the document — `3gpp-standard` or `etsi-standard`.
48
+ - `content`: Full text of the document. Sections are separated by ` \n `.
49
+ - `metadata`: JSON string with document-level metadata. Fields vary by category.
50
+
51
+ ### Data Instances
52
+
53
+ An example from the 3GPP subset:
54
+
55
+ ```
56
+ {
57
+ "id": "standard_2413",
58
+ "category": "3gpp-standard",
59
+ "content": "3rd Generation Partnership Project; \n Technical Specification Group Core Network and Terminals; \n Interworking between the Public Land Mobile Network (PLMN)...",
60
+ "metadata": "{\"Series\": \"29\", \"Release\": \"12\", \"File_name\": \"29161-c00\"}"
61
+ }
62
+ ```
63
+
64
+ An example from the ETSI subset:
65
+
66
+ ```
67
+ {
68
+ "id": "etsi_28737",
69
+ "category": "etsi-standard",
70
+ "content": "ETSI TS 132 371 V7.3.1 (2008-07) \n Security Management concept and requirements \n 1 Scope \n The present document specifies...",
71
+ "metadata": "{\"working_group\": \"TS\", \"year\": 2008, \"deliverable_type\": \"TS\", \"version\": \"7.3.1\", \"title\": \"Security Management concept and requirements\"}"
72
+ }
73
+ ```
74
+
75
+ ## Sample Code
76
+
77
+ ```python
78
+ import json
79
+ from datasets import load_dataset
80
+
81
+ # Full dataset
82
+ ds = load_dataset("NareshModina/TeleSpec-Data")
83
+
84
+ # Single category
85
+ ds = load_dataset("NareshModina/TeleSpec-Data", name="etsi-standard")
86
+ ds = load_dataset("NareshModina/TeleSpec-Data", name="3gpp-standard")
87
+
88
+ sample = ds["train"][0]
89
+ print(f"ID: {sample['id']}\nCategory: {sample['category']}\nContent: {sample['content'][:200]}")
90
+ for key, value in json.loads(sample["metadata"]).items():
91
+ print(f"{key}: {value}")
92
+ ```
93
+
94
+ ## Citation
95
+
96
+ If you use this dataset, please cite:
97
+
98
+ ```bibtex
99
+ @dataset{modina2025telespecdata,
100
+ author = {Naresh Modina},
101
+ title = {TeleSpec-Data: A Telecommunications Standards Dataset for Language Model Pretraining},
102
+ year = {2025},
103
+ publisher = {Hugging Face},
104
+ url = {https://huggingface.co/datasets/NareshModina/TeleSpec-Data}
105
+ }
106
+ ```
107
+
108
+ Please also cite the upstream sources:
109
+
110
+ ```bibtex
111
+ @misc{maatouk2024telellms,
112
+ title = {Tele-LLMs: A Series of Specialized Large Language Models for Telecommunications},
113
+ author = {Ali Maatouk and Kenny Chirino Ampudia and Rex Ying and Leandros Tassiulas},
114
+ year = {2024},
115
+ eprint = {2409.05314},
116
+ archivePrefix = {arXiv},
117
+ primaryClass = {cs.IT},
118
+ url = {https://arxiv.org/abs/2409.05314}
119
+ }
120
+ ```
121
+
122
+ ETSI document corpus sourced from [rasoul-nikbakht/NetSpec-LLM](https://huggingface.co/datasets/rasoul-nikbakht/NetSpec-LLM) (CC BY-NC 4.0).