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-base-fever")
# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification

tokenizer = AutoTokenizer.from_pretrained("sagnikrayc/roberta-base-fever")
model = AutoModelForSequenceClassification.from_pretrained("sagnikrayc/roberta-base-fever", device_map="auto")
Quick Links
wandb: Run summary:
wandb:                 eval/f1 0.8823
wandb:               eval/loss 0.55886
wandb:                  eval/p 0.88088
wandb:                  eval/r 0.88558

Note:

  1. [evidence_text][SEP][claim]
  2. Only trained/validated on instances length <= 512 tokens.
Downloads last month
10
Safetensors
Model size
0.1B params
Tensor type
I64
·
F32
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Dataset used to train sagnikrayc/roberta-base-fever