initial commit e9a9940
Chujie Zheng commited on
How to use thu-coai/roberta-base-cold with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="thu-coai/roberta-base-cold") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("thu-coai/roberta-base-cold")
model = AutoModelForSequenceClassification.from_pretrained("thu-coai/roberta-base-cold")