Merge branch 'main' of https://huggingface.co/Jtisch7/bertFinancialSent 116f108
Breadboy0007 commited on
How to use Jtisch7/bertFinancialSent with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Jtisch7/bertFinancialSent") # Load model directly
from transformers import AutoTokenizer, TF_AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Jtisch7/bertFinancialSent")
model = TF_AutoModelForSequenceClassification.from_pretrained("Jtisch7/bertFinancialSent")