Instructions to use prithivMLmods/WBC-Type-Classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use prithivMLmods/WBC-Type-Classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="prithivMLmods/WBC-Type-Classifier") pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")# Load model directly from transformers import AutoProcessor, AutoModelForImageClassification processor = AutoProcessor.from_pretrained("prithivMLmods/WBC-Type-Classifier") model = AutoModelForImageClassification.from_pretrained("prithivMLmods/WBC-Type-Classifier") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
---
|
|
|
|
|
|
|
| 4 |
# **WBC-Type-Classifier**
|
| 5 |
|
| 6 |
> **WBC-Type-Classifier** is an image classification vision-language encoder model fine-tuned from **google/siglip2-base-patch16-224** for a single-label classification task. It is designed to classify different types of white blood cells (WBCs) using the **SiglipForImageClassification** architecture.
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
---
|
| 4 |
+

|
| 5 |
+
|
| 6 |
# **WBC-Type-Classifier**
|
| 7 |
|
| 8 |
> **WBC-Type-Classifier** is an image classification vision-language encoder model fine-tuned from **google/siglip2-base-patch16-224** for a single-label classification task. It is designed to classify different types of white blood cells (WBCs) using the **SiglipForImageClassification** architecture.
|