SinaLab/ArBanking77
Viewer • Updated • 1.57k • 168
How to use ashrafulparan/arbanking77 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="ashrafulparan/arbanking77") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("ashrafulparan/arbanking77")
model = AutoModelForSequenceClassification.from_pretrained("ashrafulparan/arbanking77")