Downloads · 30 days
218
0% of all-time downloads
whispAI/ClaimBuster-DeBERTaV2
ClaimBuster-DeBERTaV2 is a text classification model from whispAI. Use it when you need a label for a piece of text. It is set up for transformers.
- Problem type: Multi-class Classification - Model ID: 3165789318 - CO2 Emissions (in grams): 23.1023
Downloads · 30 days
218
0% of all-time downloads
All-time downloads
552K
Public
Repo size
1.5 GB
Likes
2
Public
Click a slice to open those files.
.bin738 MB · 99%
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/lucafrost/ClaimBuster-DeBERTaV2
Or Python API:
from transformers import AutoModelForSequenceClassification, AutoTokenizer
model = AutoModelForSequenceClassification.from_pretrained("lucafrost/ClaimBuster-DeBERTaV2", use_auth_token=True)
tokenizer = AutoTokenizer.from_pretrained("lucafrost/ClaimBuster-DeBERTaV2", use_auth_token=True)
inputs = tokenizer("I love AutoTrain", return_tensors="pt")
outputs = model(**inputs)