A deep learning approach to skin cancer detection using ConvNeXt-Tiny.
Our trained models and code are available on HuggingFace:
🤗 Melanoma Classification Models
Figure: Performance metrics of our melanoma classification model on the ISIC 2020 dataset
Please follow our step-by-step setup guide in INSTALL.md.
For model training and fine-tuning instructions, see TRAINING.md.
Models are available on HuggingFace. You can load them using the transformers library:
from transformers import AutoModelForImageClassification, AutoFeatureExtractor
model_name = "Mhara/melanoma_classification"
model = AutoModelForImageClassification.from_pretrained(model_name)
feature_extractor = AutoFeatureExtractor.from_pretrained(model_name)git lfs install
git clone https://huggingface.co/Mhara/melanoma_classificationor manually download the weights from the HuggingFace model page.
Also, we have a google drive link for the weights: Google Drive.