Instructions to use prithivMLmods/BrainTumor-Classification-Mini with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use prithivMLmods/BrainTumor-Classification-Mini with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="prithivMLmods/BrainTumor-Classification-Mini") 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/BrainTumor-Classification-Mini") model = AutoModelForImageClassification.from_pretrained("prithivMLmods/BrainTumor-Classification-Mini", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |

|
| 5 |
|
|
@@ -86,4 +96,4 @@ The **BrainTumor-Classification-Mini** model is designed for brain tumor image c
|
|
| 86 |
- **Medical Diagnosis Assistance:** Supporting radiologists in preliminary tumor classification.
|
| 87 |
- **AI-Assisted Healthcare:** Enhancing automated tumor detection in medical imaging.
|
| 88 |
- **Research & Development:** Facilitating studies in AI-driven medical imaging solutions.
|
| 89 |
-
- **Educational Purposes:** Helping students and professionals learn about tumor classification using AI.
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
base_model:
|
| 6 |
+
- google/siglip2-base-patch16-224
|
| 7 |
+
pipeline_tag: image-classification
|
| 8 |
+
library_name: transformers
|
| 9 |
+
tags:
|
| 10 |
+
- brain
|
| 11 |
+
- tumor
|
| 12 |
+
- classification
|
| 13 |
---
|
| 14 |

|
| 15 |
|
|
|
|
| 96 |
- **Medical Diagnosis Assistance:** Supporting radiologists in preliminary tumor classification.
|
| 97 |
- **AI-Assisted Healthcare:** Enhancing automated tumor detection in medical imaging.
|
| 98 |
- **Research & Development:** Facilitating studies in AI-driven medical imaging solutions.
|
| 99 |
+
- **Educational Purposes:** Helping students and professionals learn about tumor classification using AI.
|