CoolFace
Datasetpublic

Taylor658/stereotactic-radiosurgery-k1-with-segmentation

๐ŸŽฏ Stereotactic Radiosurgery Dataset (SRS) ๐Ÿฅ 400 synthetic patient records describing the clinical, imaging, segmentation, and treatment-planning metadata of a stereotactic radiosurgery workflow, delivered as a single CSV with placeholder file paths. โš ๏ธ Disclaimer: This is a metadata-only synthetic dataset. It contains no real patients, no image files, and no segmentation files. Every record is generated; paths in the imaging and segmentation columns are placeholders that doโ€ฆ See the full description on the dataset page: https://huggingface.co/datasets/Taylor658/stereotactic-radiosurgery-k1-with-segmentation.

sourceHugging Facecc-by-nc-4.0updated 12d agoView on Hugging Face
0likes31downloads
Dataset Card

๐ŸŽฏ Stereotactic Radiosurgery Dataset (SRS)

๐Ÿฅ 400 synthetic patient records describing the clinical, imaging, segmentation, and treatment-planning metadata of a stereotactic radiosurgery workflow, delivered as a single CSV with placeholder file paths.
โš ๏ธ Disclaimer: This is a metadata-only synthetic dataset. It contains no real patients, no image files, and no segmentation files. Every record is generated; paths in the imaging and segmentation columns are placeholders that do not resolve to any file. Not for clinical use, treatment planning, or any patient-facing decision.

๐Ÿ“‹ At a Glance

๐Ÿ”ข Rows400 synthetic patient records
๐Ÿ“ FilesOne CSV (stereotactic-radiosurgery-k1-with-segmentation.csv)
๐Ÿง  ImagingMetadata only; no CT, MRI, or PET files included
๐ŸŽฏ SegmentationMetadata only; GTV, CTV, and PTV paths are placeholders
๐Ÿงฌ GenerationSynthetic, template-based
๐ŸŒ LanguageEnglish
๐Ÿ“„ LicenseCC BY-NC 4.0
๐Ÿท๏ธ Version1.0

๐Ÿ“ Overview

The dataset models the shape of an SRS data pipeline, from patient intake through imaging, target delineation, and plan parameters, so that tooling and models can be prototyped against a realistic schema before access to protected clinical data is arranged. It is intended for research and development of AI methods in SRS, not as a source of clinical ground truth.


๐Ÿ“Š Dataset Summary

FeatureDetails
๐Ÿฅ Clinical Metadata400 records with synthetic demographics, medical history, and tumor descriptors
๐Ÿง  Imaging MetadataModality, contrast protocol, voxel geometry, and scanner descriptors for CT, MRI, and PET; no image files
๐ŸŽฏ Segmentation MetadataPlaceholder paths and descriptors for GTV, CTV, and PTV, including a synthetic inter-observer variability field
โš™๏ธ Treatment Plan MetadataBeam arrangement, prescribed dose, DVH summary fields, and optimization objective labels
๐Ÿ“‚ File FormatCSV; path columns follow NIfTI naming conventions but point to no file

๐Ÿ’ก Fields

๐Ÿฅ Clinical

  • โ€”Patient demographics: age, sex, weight, height (synthetic)
  • โ€”Medical history: comorbidities, previous treatments (synthetic labels)
  • โ€”Tumor details: histology, grade, and stage (synthetic labels)

๐Ÿง  Imaging Metadata

  • โ€”Modality: CT, MRI, or PET
  • โ€”Protocol: contrast-enhanced or non-contrast
  • โ€”Scanner descriptors: manufacturer and model (synthetic labels)
  • โ€”Voxel geometry: isotropic or anisotropic descriptors

๐ŸŽฏ Segmentation Metadata

  • โ€”Gross Tumor Volume (GTV), Clinical Target Volume (CTV), Planning Target Volume (PTV)
  • โ€”Placeholder NIfTI-style paths (e.g., /simulated/path/SIM-0001_GTV_segmentation.nii)
  • โ€”Synthetic inter-observer variability descriptor

โš™๏ธ Treatment Plan Metadata

  • โ€”Beam arrangement label, prescribed dose (Gy), DVH summary fields
  • โ€”Optimization objective labels (target coverage, organ-at-risk sparing)

๐Ÿ” Example Record

FieldExample Value
Patient_IDSIM-0001
Age36
Imaging_ModalityCT
Tumor_HistologyMeningioma
GTV_Segmentation_Path/simulated/path/SIM-0001_GTV_segmentation.nii
Beam_ArrangementSingle
Prescribed_Dose_Gy35.04
๐Ÿ“Œ Note: The SIM- prefix on every identifier marks the record as synthetic. Column names above are illustrative; see the CSV header for the exact schema.

๐Ÿš€ Usage

Load the Dataset

python
from datasets import load_dataset

dataset = load_dataset("Taylor658/stereotactic-radiosurgery-k1-with-segmentation", split="train")
print(dataset[0])

๐ŸŽฏ Intended Usage

  • โ€”๐Ÿงช Pipeline prototyping: build and test ingestion, validation, and cohort-selection code against an SRS-shaped schema before connecting to a protected clinical source
  • โ€”๐Ÿท๏ธ Tabular modeling exercises: classification or regression on synthetic metadata fields (e.g., beam arrangement from histology and stage) to develop and debug training code
  • โ€”๐Ÿ“ Schema design: a starting point for defining the metadata a real SRS dataset should carry

๐Ÿšซ Out of Scope

  • โ€”Training or validating any model intended for clinical contouring, dose prediction, or treatment optimization; no image or dose data is present
  • โ€”Patient outcome prediction; outcomes in the file are synthetic labels with no relationship to real treatment response
  • โ€”Any use that treats the records as representing real people

โš ๏ธ Limitations

๐Ÿงฌ Synthetic Content

  • โ€”Every field is generated; there is no underlying patient, scan, contour, or plan
  • โ€”Distributions of age, histology, dose, and other fields are template choices, not epidemiological or clinical distributions

๐Ÿ“ No Imaging or Segmentation Files

  • โ€”Path columns are placeholders and do not resolve
  • โ€”The dataset cannot support image-based tasks

โš™๏ธ Plan Fields Are Labels

  • โ€”Dose, beam, and DVH fields are summary values, not the output of a treatment planning system
  • โ€”No dose distribution, structure set, or plan file is included

๐Ÿฅ Not for Clinical Use

  • โ€”Nothing in this dataset should inform patient care, planning, or QA

๐Ÿ“œ License

Released under CC BY-NC 4.0. You may share and adapt the material for non-commercial purposes with attribution.


๐Ÿ™Œ Citation

bibtex
@misc{srs_synthetic_metadata_2026,
  title  = {Stereotactic Radiosurgery Dataset (SRS): Synthetic Metadata},
  author = {Taylor, A.},
  year   = {2026},
  howpublished = {\url{https://huggingface.co/datasets/Taylor658/stereotactic-radiosurgery-k1-with-segmentation}},
  note   = {Metadata-only synthetic dataset with placeholder imaging and segmentation paths.}
}

๐Ÿง‘โ€๐Ÿ’ป Contributing

  • โ€”๐Ÿ’ฌ Open a Discussion to propose additional metadata fields, histology categories, or plan descriptors

๐Ÿ‘จโ€๐Ÿš€ Author: A Taylor ยท ๐Ÿค— Hugging Face: hf.co/Taylor658 ยท ๐Ÿ™ GitHub: ATaylorAerospace