Downloads · 30 days
0
esab/pbc-cell-classifier
pbc-cell-classifier is a machine learning model from esab. Use it for the machine learning task on the model card, and read the license before you ship it in a product.
This is a ResNet-18 model fine-tuned for peripheral blood cell (PBC) classification using fastai. The model can classify blood cell images into 8 different cell types with 98.07% validation accuracy.
Downloads · 30 days
0
Access
Public
Updated Jun 11, 2025
Repo size
94.4 MB
Likes
0
Public
Click a slice to open those files.
.pkl47.3 MB · 50%
From the Hugging Face model README
This is a ResNet-18 model fine-tuned for peripheral blood cell (PBC) classification using fastai. The model can classify blood cell images into 8 different cell types with 98.07% validation accuracy.
The model can classify the following blood cell types:
from fastai.vision.all import *
# Load the model
learn = load_learner('cell_classifier.pkl')
# Predict on an image
pred, pred_idx, probs = learn.predict('path/to/blood_cell_image.jpg')
print(f"Predicted: {pred}")
print(f"Confidence: {probs[pred_idx]:.2%}")
fastai>=2.7.0,<2.8.0
numpy<2.0
pillow>=10.0.0
cell_classifier.pkl - Complete fastai learner with model and preprocessingcell_classifier_weights.pth - PyTorch weights onlyconfusion_matrix.png - Validation confusion matrixclassification_report.csv - Detailed classification metricstraining_summary.json - Training configuration and resultsIf you use this model, please cite:
@misc{pbc-cell-classifier-2024,
title={ResNet-18 Peripheral Blood Cell Classifier},
author={Your Name},
year={2024},
howpublished={Hugging Face Hub},
url={https://huggingface.co/your-username/pbc-cell-classifier}
}
This model is released under the MIT License.
HuggingFace Agents-MCP-Hackathon Track 1 - MCP Tool/Server