Upload tokenizer fd6c789 verified
GAYEON JUNG commited on
How to use GAYEON6423/find-bench with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="GAYEON6423/find-bench") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("GAYEON6423/find-bench")
model = AutoModelForSequenceClassification.from_pretrained("GAYEON6423/find-bench", device_map="auto")