Views
No views yet
$ 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/pujaburman30/autotrain-hi_ner_xlmr_large-924630372from transformers import AutoModelForTokenClassification, AutoTokenizer
model = AutoModelForTokenClassification.from_pretrained("pujaburman30/autotrain-hi_ner_xlmr_large-924630372", use_auth_token=True)
tokenizer = AutoTokenizer.from_pretrained("pujaburman30/autotrain-hi_ner_xlmr_large-924630372", use_auth_token=True)
inputs = tokenizer("I love AutoTrain", return_tensors="pt")
outputs = model(**inputs)