How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-classification", model="sagnikrayc/roberta-large-fever")
# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification

tokenizer = AutoTokenizer.from_pretrained("sagnikrayc/roberta-large-fever")
model = AutoModelForSequenceClassification.from_pretrained("sagnikrayc/roberta-large-fever", device_map="auto")
Quick Links
wandb:                 eval/f1 0.88556
wandb:               eval/loss 0.62762
wandb:                  eval/p 0.88384
wandb:                  eval/r 0.8891

Note:

  1. [evidence_text][SEP][claim]
  2. Only trained/validated on instances length <= 512 tokens.
Downloads last month
9
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Dataset used to train sagnikrayc/roberta-large-fever