ArabianLLM Series | Native Arabic Large Language Models
Collection
This collection is related to native Arabic Large Language Models.. It represent different sizes of GPT trained Model for Test Generative • 8 items • Updated • 5
How to use riotu-lab/ArabianGPT-1.5B-SA-FT with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="riotu-lab/ArabianGPT-1.5B-SA-FT") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("riotu-lab/ArabianGPT-1.5B-SA-FT")
model = AutoModelForSequenceClassification.from_pretrained("riotu-lab/ArabianGPT-1.5B-SA-FT")