--- license: mit task_categories: - image-classification language: - en tags: - biology - medical pretty_name: HEp-2 Cell size_categories: - 10K ## Usage ```python from datasets import load_dataset ds = load_dataset("Genius-Society/HEp2", split="train") labels = ds.features["label"].names for item in ds: print("image: ", item["image"]) print("label name: " + labels[item["label"]]) ``` ## Mirror ## Reference [1] [Chapter III ‐ Classifying Cell Images Using Deep Learning Models](https://github.com/Genius-Society/medical_image_computing/blob/hep2/README.md)
[2] HEp-2 Cell Image Classification with Deep Convolutional Neural Networks