Dataset Viewer

The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.

3GPP Specifications

938 3GPP technical specifications and reports decomposed into self-contained sections with tables and figures inlined. Pre-validation dataset.

Releases: Rel-18, Rel-19

Usage

from datasets import load_dataset

# Load Rel-18 NR radio specs
ds = load_dataset("GSMA/3GPP", "rel-18", split="38_series")

# Get a specific section
section = ds.filter(lambda r: r["spec_id"] == "38331" and r["clause"] == "5.2.1")[0]
print(section["body"])  # self-contained: tables and figures are inlined

# Reconstruct full spec
spec = ds.filter(lambda r: r["spec_id"] == "38331").sort("document_order")
full_text = "\n\n".join(spec["body"])

# Load Rel-19
ds19 = load_dataset("GSMA/3GPP", "rel-19", split="38_series")

Schema

Column Type Description
spec_id string Spec identifier, e.g. 38331
spec_number string Dotted form, e.g. 38.331
spec_type string TS or TR
title string Full spec title
release string Rel-18 or Rel-19
clause string Section number, e.g. 5.2.1
section_title string Section heading
parent_clause string Parent section, e.g. 5.2
depth int32 Heading depth (1-6)
body string Self-contained markdown (tables/figures inlined)
body_chars int32 Character count
document_order int32 Position within spec
images list[Image] Images referenced in this section
image_hashes list[string] MD5 hashes of images

Original DOCX Files

The original 3GPP Word documents (549 files for Rel-18, 442 files for Rel-19) are available under original/:

original/
  rel-18/
  rel-19/

Filenames follow the 3GPP convention: {spec_id}-{version}[_{part}].docx. Large specs may be split across multiple files (e.g., 38101-1-j10_cover.docx, 38101-1-j10_s00-0504.docx).

Download a single file

from huggingface_hub import hf_hub_download

path = hf_hub_download(
    "GSMA/3GPP",
    "original/rel-18/38331-i00.docx",
    repo_type="dataset",
)

Raw Markdown Files

Full-document markdown conversions (549 specs for Rel-18, 389 specs for Rel-19) are available under raw/:

raw/
  rel-18/
    21_series/
    22_series/
    23_series/
    24_series/
    26_series/
    27_series/
    28_series/
    29_series/
    31_series/
    32_series/
    33_series/
    36_series/
    37_series/
    38_series/
  rel-19/
    21_series/
    22_series/
    23_series/
    24_series/
    26_series/
    27_series/
    28_series/
    29_series/
    31_series/
    32_series/
    33_series/
    34_series/
    35_series/
    36_series/
    37_series/
    38_series/

Each spec directory contains raw.md (the complete document) and extracted images (*_img.{jpg,png}).

Download a raw spec

from huggingface_hub import hf_hub_download

path = hf_hub_download(
    "GSMA/3GPP",
    "raw/rel-18/38_series/38331/raw.md",
    repo_type="dataset",
)

License

See 3GPP Legal Matters.

Downloads last month
89