Downloads · 30 days
12
3% of all-time downloads
yousufrasheed0900/UrduTokenClassification
UrduTokenClassification is a token classification model from yousufrasheed0900. Use it when you need labels on individual words, such as names. It is set up for transformers.
- Problem type: Entity Extraction - Model ID: 88340143649 - CO2 Emissions (in grams): 0.2564
Downloads · 30 days
12
3% of all-time downloads
All-time downloads
361
Public
Parameters
125M
1 GB on disk
Likes
0
Public
Click a slice to open those files.
.bin502 MB · 50%
How the weights are stored.
F32125M · 100%
From the Hugging Face model README
You can use cURL to access this model:
$ curl -X POST -H "Authorization: Bearer YOUR_API_KEY" -H "Content-Type: application/json" -d '{"inputs": "I love AutoTrain"}' https://api-inference.huggingface.co/models/yousufrasheed0900/autotrain-token-classification-88340143649
Or Python API:
from transformers import AutoModelForTokenClassification, AutoTokenizer
model = AutoModelForTokenClassification.from_pretrained("yousufrasheed0900/autotrain-token-classification-88340143649", use_auth_token=True)
tokenizer = AutoTokenizer.from_pretrained("yousufrasheed0900/autotrain-token-classification-88340143649", use_auth_token=True)
inputs = tokenizer("I love AutoTrain", return_tensors="pt")
outputs = model(**inputs)