3GPP Release 18 Specifications
549 3GPP technical specifications and reports converted to markdown, organized by series.
from datasets import load_dataset
Load all raw markdown for the 38-series
raw = load_dataset("GSMA/3GPP", "raw", split="38_series")
Filter to one spec
spec = raw.filter(lambda r: r["spec_id"] == "38331")
print(spec[0]["text"][:500])
Load all images for the 38-series
imgs = load_dataset("GSMA/3GPP", "images", split="38_series")