Training in progress, epoch 1 fe63137 verified
BKforKorea commited on
How to use cscscsds/0320_cosmetic2_roberta with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="cscscsds/0320_cosmetic2_roberta") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("cscscsds/0320_cosmetic2_roberta")
model = AutoModelForSequenceClassification.from_pretrained("cscscsds/0320_cosmetic2_roberta", device_map="auto")