Transformers How to use hts98/pholarge with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="hts98/pholarge") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("hts98/pholarge")
model = AutoModelForSequenceClassification.from_pretrained("hts98/pholarge")