Dataset Viewer
The dataset viewer is not available for this dataset.
The JWT signature verification failed. Check the signing key and the algorithm.
Error code:   JWTInvalidSignature
Exception:    InvalidSignatureError
Message:      Signature verification failed
Traceback:    Traceback (most recent call last):
                File "/src/libs/libapi/src/libapi/jwt_token.py", line 286, in validate_jwt
                  decoded = jwt.decode(
                      jwt=token,
                  ...<2 lines>...
                      options=options,
                  )
                File "/usr/local/lib/python3.14/site-packages/jwt/api_jwt.py", line 368, in decode
                  decoded = self.decode_complete(
                      jwt,
                  ...<8 lines>...
                      leeway=leeway,
                  )
                File "/usr/local/lib/python3.14/site-packages/jwt/api_jwt.py", line 265, in decode_complete
                  decoded = self._jws.decode_complete(
                      jwt,
                  ...<3 lines>...
                      detached_payload=detached_payload,
                  )
                File "/usr/local/lib/python3.14/site-packages/jwt/api_jws.py", line 270, in decode_complete
                  self._verify_signature(
                  ~~~~~~~~~~~~~~~~~~~~~~^
                      signing_input,
                      ^^^^^^^^^^^^^^
                  ...<4 lines>...
                      options=merged_options,
                      ^^^^^^^^^^^^^^^^^^^^^^^
                  )
                  ^
                File "/usr/local/lib/python3.14/site-packages/jwt/api_jws.py", line 417, in _verify_signature
                  raise InvalidSignatureError("Signature verification failed")
              jwt.exceptions.InvalidSignatureError: Signature verification failed

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

ERDES: Eye Retinal Detachment Ultrasound Dataset

Resource Link
Website Website
Paper arXiv
Checkpoints HF Checkpoints Zenodo
Dataset Zenodo
Code GitHub

πŸ“Œ Introduction

ERDES is a large-scale, publicly available dataset of 3D ocular ultrasound videos for retinal and macular detachment classification. It was introduced in our paper ERDES: A Benchmark Video Dataset for Retinal Detachment and Macular Status Classification in Ocular Ultrasound. The corpus consists of 5,381 expertly annotated video clips totaling 5 hours and 10 minutes, providing a valuable resource for medical AI research in ophthalmology.

Key Features:

  • 5,381 labeled ultrasound video clips
  • Expert annotations for retinal detachment (RD) and macular status
  • Structured classification (Normal, RD, PVD, macula-detached/intact)
  • Preprocessed for privacy and consistency

🎯 Motivation

Medical video datasets for AI are scarce despite their clinical importance. ERDES bridges this gap by offering:

  • A standardized benchmark for retinal detachment classification in ultrasound videos.
  • Support for spatiotemporal analysis (e.g., 3D CNNs).
  • Open access to accelerate research in ocular diagnostics.

πŸ“Š Dataset Overview

1. Data Structure

Videos are categorized into two primary groups:

Non-RD (Non-Retinal Detachment):

  • Normal
  • Posterior Vitreous Detachment (PVD)

RD (Retinal Detachment):

  • Macula-Detached
    • Bilateral (nasal and temporal regions involved)
    • Temporal detachment only
  • Macula-Intact
    • Nasal detachment
    • Temporal detachment
Folder Structure

2. Annotations

Each clip is labeled by sonologists for:

  • Presence/absence of retinal detachment.
  • Macular involvement (detached/intact).
Data Statistics

3. Preprocessing

  • Privacy: PHI removed using YOLOv8-based globe detection.
  • Consistency: Cropped to the ocular ROI.
  • Format: MP4 videos.

πŸ“₯ Download

Access the dataset via the HuggingFace API:

from datasets import load_dataset

dataset = load_dataset("pcvlab/erdes")

πŸ› οΈ Code & Baselines

We open source our baseline experiments on our GitHub repo, which includes:

  • Baseline 3D CNN and ViT models for classification.
  • End-to-end diagnostic pipeline for macular detachment.

πŸ“œ Citation

If you use ERDES, please cite:

@article{ozkuterdes,
  title={ERDES: A Benchmark Video Dataset for Retinal Detachment and Macular Status Classification in Ocular Ultrasound},
  author={Ozkut, Yasemin and Navard, Pouyan and Adhikari, Srikar and Situ-LaCasse, Elaine and Acu{\~n}a, Josie and Yarnish, Adrienne A and Yilmaz, Alper},
  journal={arXiv preprint arXiv:2508.04735},
  year={2025}
}
Downloads last month
3,584

Paper for pcvlab/erdes