How to use 3omarQ/arabic-quote-classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="3omarQ/arabic-quote-classifier")
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("3omarQ/arabic-quote-classifier", dtype="auto")
-