PhaniManda/autotrain-data-test-auto
Preview • Updated • 21
How to use PhaniManda/autotrain-test-auto-68273137270 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="PhaniManda/autotrain-test-auto-68273137270") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("PhaniManda/autotrain-test-auto-68273137270")
model = AutoModelForSequenceClassification.from_pretrained("PhaniManda/autotrain-test-auto-68273137270", device_map="auto")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/PhaniManda/autotrain-test-auto-68273137270
Or Python API:
from transformers import AutoModelForSequenceClassification, AutoTokenizer
model = AutoModelForSequenceClassification.from_pretrained("PhaniManda/autotrain-test-auto-68273137270", use_auth_token=True)
tokenizer = AutoTokenizer.from_pretrained("PhaniManda/autotrain-test-auto-68273137270", use_auth_token=True)
inputs = tokenizer("I love AutoTrain", return_tensors="pt")
outputs = model(**inputs)