emolero commited on
Commit
b6fefef
·
verified ·
1 Parent(s): 474180d

Unify card: Open-Telco Telecom Standards Corpus

Browse files
Files changed (1) hide show
  1. README.md +34 -2
README.md CHANGED
@@ -1,11 +1,15 @@
1
  ---
2
  license: other
 
 
3
  language:
4
  - en
 
5
  tags:
 
6
  - oran
7
- - telecom
8
- - specifications
9
  size_categories:
10
  - n<1K
11
  configs:
@@ -61,6 +65,9 @@ configs:
61
 
62
  # O-RAN source mirror
63
 
 
 
 
64
  This dataset mirrors the O-RAN ALLIANCE's published specifications and technical reports. Every source is kept twice: `original/` is the document as O-RAN released it (PDF and Word), and `marked/` is that same document converted to Markdown for search and retrieval, one `raw.md` per document with any figures extracted beside it. The two trees share identical paths, so a file in `original/` has a parsed twin at the matching path under `marked/`; both are grouped by O-RAN ALLIANCE working group (WG1 through WG11, plus the focus groups SFG, SuFG, and TIFG). `manifest.jsonl` carries one row per file (path, SHA-256, parse status), and `STATUS.md` reports how much of the corpus has been parsed.
65
 
66
  ```text
@@ -72,3 +79,28 @@ oran/
72
  manifest.jsonl # one row per file: path, sha256, parse status
73
  STATUS.md # parse-coverage summary
74
  ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: other
3
+ license_name: o-ran
4
+ license_link: https://www.o-ran.org/
5
  language:
6
  - en
7
+ pretty_name: O-RAN ALLIANCE Specifications
8
  tags:
9
+ - telecommunications
10
  - oran
11
+ - standards
12
+ - open-telco
13
  size_categories:
14
  - n<1K
15
  configs:
 
65
 
66
  # O-RAN source mirror
67
 
68
+ > Part of the **[Open-Telco Telecom Standards Corpus](https://huggingface.co/collections/GSMA/telecom-standards-corpus-6a432dc598fc32729754fecf)**.
69
+ > Sibling mirrors: [3GPP](https://huggingface.co/datasets/GSMA/3GPP) · [ETSI](https://huggingface.co/datasets/GSMA/etsi) · [ITU-T](https://huggingface.co/datasets/GSMA/itu) · **O-RAN** · [GSMA](https://huggingface.co/datasets/GSMA/gsma) · [TM Forum](https://huggingface.co/datasets/GSMA/tmforum) · [CAMARA](https://huggingface.co/datasets/GSMA/camara)
70
+
71
  This dataset mirrors the O-RAN ALLIANCE's published specifications and technical reports. Every source is kept twice: `original/` is the document as O-RAN released it (PDF and Word), and `marked/` is that same document converted to Markdown for search and retrieval, one `raw.md` per document with any figures extracted beside it. The two trees share identical paths, so a file in `original/` has a parsed twin at the matching path under `marked/`; both are grouped by O-RAN ALLIANCE working group (WG1 through WG11, plus the focus groups SFG, SuFG, and TIFG). `manifest.jsonl` carries one row per file (path, SHA-256, parse status), and `STATUS.md` reports how much of the corpus has been parsed.
72
 
73
  ```text
 
79
  manifest.jsonl # one row per file: path, sha256, parse status
80
  STATUS.md # parse-coverage summary
81
  ```
82
+
83
+ ## How it is organized
84
+
85
+ - `original/` holds the specifications and technical reports as the O-RAN ALLIANCE published them (PDF and Word), grouped by working group (WG1 through WG11, plus the focus groups SFG, SuFG, and TIFG).
86
+ - `marked/` is the Markdown twin of `original/` at identical paths, one `raw.md` per document with figures beside it.
87
+ - `manifest.jsonl` carries one row per file (path, SHA-256, parse status); `STATUS.md` reports parse coverage.
88
+
89
+ ## How to use
90
+
91
+ Pull only the Markdown twins (skip the heavy `original/` tree) and read them straight:
92
+
93
+ ```python
94
+ from huggingface_hub import snapshot_download
95
+
96
+ path = snapshot_download("GSMA/oran", repo_type="dataset", allow_patterns="marked/**")
97
+ # every parsed document is a marked/**/raw.md
98
+ ```
99
+
100
+ ## The corpus
101
+
102
+ This dataset is part of the **Open-Telco Telecom Standards Corpus**, an effort to make telecommunications open by mirroring every major standards body into clean, machine-readable Markdown. The full set: 3GPP, ETSI, ITU-T, O-RAN, GSMA, TM Forum, and CAMARA. Browse them all in the [collection](https://huggingface.co/collections/GSMA/telecom-standards-corpus-6a432dc598fc32729754fecf).
103
+
104
+ ## License and attribution
105
+
106
+ The mirrored documents remain the property of the O-RAN ALLIANCE and stay subject to its terms; see [www.o-ran.org](https://www.o-ran.org/). This dataset reproduces them in original and Markdown form for research, search, and retrieval. Cite the underlying specification by its O-RAN document number when you use it.