--- license: apache-2.0 tags: - biology size_categories: - 10K cancer_eccdna_prediction_short/ ├── data/ │ └── cancer_eccdna_prediction_short.csv ├── hf_data/ │ ├── dataset_info.json │ └── data.arrow └── README.md --- ## 🚀 Quick Usage

from datasets import load_dataset, load_from_disk

# Load from local
dataset = load_from_disk("cancer_eccdna_prediction_short/hf_data")

# Load from Hugging Face Hub (after upload)
dataset = load_dataset("your-username/cancer_eccdna_prediction_short")
--- ## Citation If you use this dataset, please cite:


@inproceedings{liu2025eccdnamamba,
  title={eccDNAMamba: A Pre-Trained Model for Ultra-Long eccDNA Sequence Analysis},
  author={Zhenke Liu and Jien Li and Ziqi Zhang},
  booktitle={ICML 2025 GenBio Workshop},
  year={2025},
  url={https://openreview.net/forum?id=56xKN7KJjy}
}