Downloads · 30 days
4
3% of all-time downloads
rahul2025/isl
isl is a text classification model from rahul2025. Use it when you need a label for a piece of text. It is set up for transformers.
Multilingual BERT fine-tuned for Indian Sign Language greeting intent classification.
Downloads · 30 days
4
3% of all-time downloads
All-time downloads
115
Public
Parameters
178M
3 GB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors2.8 GB · 63%
From the Hugging Face model README
Multilingual BERT fine-tuned for Indian Sign Language greeting intent classification.
| ID | Label |
|---|---|
| 0 | HELLO |
| 1 | GOOD_MORNING |
| 2 | GOOD_AFTERNOON |
| 3 | GOOD_EVENING |
| 4 | GOOD_NIGHT |
| 5 | HOW_ARE_YOU |
| 6 | ALRIGHT |
| 7 | PLEASED |
| 8 | THANK_YOU |
import requests
API_URL = "https://api-inference.huggingface.co/models/rahul2025/isl"
headers = {"Authorization": "Bearer YOUR_HF_TOKEN"}
response = requests.post(API_URL, headers=headers, json={"inputs": "good morning"})
print(response.json())
# [{"label": "GOOD_MORNING", "score": 0.98}]