--- license: other license_name: ophthalmology-mixed license_link: https://github.com/mayberichard/zju-eye-pretrain/blob/main/LICENSE task_categories: - image-classification - image-segmentation - image-to-image - text-to-image - unconditional-image-generation language: - en - zh tags: - ophthalmology - retina - oct - fundus - slo - medical-imaging - segmentation - pretraining size_categories: - 1M Unified multi-source ophthalmological imaging dataset for foundation model pretraining and downstream tasks. **1.1M images** spanning **26 cohorts** with a **strict 41-column unified manifest schema**. ## Composition | Source | Images | Modalities | Cohorts | |---|---:|---|---| | Private Shanghai DRI OCT Triton (SS-OCT) | 419,042 | oct_bscan + fundus_color + slo_gray | 1 | | Public Fundus | 198,629 | fundus_color (+ GAMMA OCT) | 6 | | Public OCT | 488,705 | oct_bscan | 19 | | **Total** | **1,106,376** | | **26** | See [DATASET_OVERVIEW.md](DATASET_OVERVIEW.md) for full details per cohort (devices, regions, masks, demographics). ## Quick Start ```python from datasets import load_dataset # Load everything (1.1M images) ds = load_dataset("mayberichard/zju-eye-pretrain", streaming=True) # Load one batch ds = load_dataset("mayberichard/zju-eye-pretrain", "public_oct") # Load one cohort ds = load_dataset("mayberichard/zju-eye-pretrain", "kermany") # Each row: # image: PIL.Image # {layer/lesion/vessel/disc_cup}_mask: PIL.Image or None # image_id, study_id, patient_hash, modality, anatomy, severity, ... ``` ## Schema (41-column manifest, identical across all batches) ``` cohort, study_id, patient_hash, visit_date, eye, device_vendor, device_model, device_serial_hash, device_software_version, hospital_domain, ethnicity, image_quality_score, image_quality_band, diagnosis_group, lesion_tags, lesion_location, layer_involvement, severity, diagnosis_source, label_confidence, schema_version, image_id, file_path, file_format, modality, anatomy, device_technology, scan_protocol, scan_x_mm, bscan_index, image_height_px, image_width_px, axial_resolution_um, has_segmentation, n_layers_visible, fovea_x_norm, crt_um, choroid_thickness_um, oct_footprint_bbox_fundus, oct_footprint_bbox_slo, is_valid ``` Plus per-image `image` bytes and per-cohort mask columns. ## Captions Each image has 5 captions (4 L1 variants + 1 L3 derived). Total 5.5M captions in `captions/`. ```python from datasets import load_dataset caps = load_dataset("mayberichard/zju-eye-pretrain", "captions_oct") # join on image_id with the images config ``` ## Licensing This dataset aggregates multiple sources with mixed licenses. See [LICENSE](LICENSE) for per-cohort license terms. Users are responsible for compliance with the original license of each cohort. **Private Shanghai Topcon data is included for research convenience.** Commercial use is prohibited. ## Citation If you use this dataset, please cite the original source for each cohort used (see DATASET_OVERVIEW.md). ## Versioning & Updates This dataset supports incremental updates. New cohorts can be added without touching existing data via additional shards in `data//`. Schema migrations preserve old `*_v1.parquet` alongside new versions.