Instructions to use prithivMLmods/Alphabet-Sign-Language-Detection with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use prithivMLmods/Alphabet-Sign-Language-Detection with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="prithivMLmods/Alphabet-Sign-Language-Detection") 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/Alphabet-Sign-Language-Detection") model = AutoModelForImageClassification.from_pretrained("prithivMLmods/Alphabet-Sign-Language-Detection") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -10,7 +10,7 @@ tags:
|
|
| 10 |
- sign-language-detection
|
| 11 |
- alphabet
|
| 12 |
---
|
| 13 |
-

|
| 14 |
|
| 15 |
# **Alphabet-Sign-Language-Detection**
|
| 16 |
> **Alphabet-Sign-Language-Detection** 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 images into **sign language alphabet** categories using the **SiglipForImageClassification** architecture.
|