Update README.md b38e3c8 verified
NN POP commited on
How to use nomnomshark41/finbert with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="nomnomshark41/finbert") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("nomnomshark41/finbert")
model = AutoModelForSequenceClassification.from_pretrained("nomnomshark41/finbert")