Downloads · 30 days
0
MooseML/EfficientNet-Cancer-Detection
EfficientNet-Cancer-Detection is a image classification model from MooseML. Use it when you need a label for an image. It is set up for tensorflow. The card lists the license as mit.
This repository contains models for detecting metastatic cancer in histopathologic images. - EfficientNetV2S: A Baseline CNN-based model for local feature extraction. - ViT-Hybrid: A Transformer-based model that learn…
Downloads · 30 days
0
Access
Public
Updated Aug 19, 2025
Repo size
458 MB
Likes
0
Public
Click a slice to open those files.
.h5458 MB · 100%
From the Hugging Face model README
This repository contains models for detecting metastatic cancer in histopathologic images.
from huggingface_hub import hf_hub_download
from tensorflow.keras.models import load_model
model_path = hf_hub_download(repo_id="MooseML/EfficientNet-Cancer-Detection", filename="efficientnet_cancer_model.h5")
model = load_model(model_path)
model_path_vit = hf_hub_download(repo_id="MooseML/EfficientNet-Cancer-Detection", filename="ViT_hybrid_cancer_model.h5")
model_vit = load_model(model_path_vit)