Training in progress, epoch 1 74a1228
Kunal Kotkar commited on
How to use kkotkar1/test_trainer_old with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="kkotkar1/test_trainer_old") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("kkotkar1/test_trainer_old")
model = AutoModelForSequenceClassification.from_pretrained("kkotkar1/test_trainer_old")