syplyd-marbert-1 / README.md
ShazaAly's picture
Upload BertForSequenceClassification
7ff63df verified
metadata
library_name: transformers
language: ar
pipeline_tag: text-classification
tags:
  - text-classification
  - intent-classification
  - marbert
  - egyptian-arabic
  - nlu
  - e-commerce
  - customer-service
license: apache-2.0

๐ŸŒ MARBERT for Egyptian Dialect Intent Classification (syplyd-marbert-v1)

This is a fine-tuned version of UBC-NLP/MARBERTv2, specifically adapted for intent classification in Egyptian Colloquial Arabic, with a primary focus on e-commerce and customer service scenarios.

It enables accurate understanding of user queries in dialectal Arabic, empowering applications like chatbots, support assistants, and ticket routing systems.


๐Ÿง  Model Details


๐Ÿš€ Usage

This model can be used directly with the Hugging Face transformers library:

from transformers import pipeline

classifier = pipeline("text-classification", model="ShazaAly/syplyd-marbert-1")

# Example 1
text_1 = "ุนุงูŠุฒ ุฃุนุฑู ุงู„ุฃูˆุฑุฏุฑ ุจุชุงุนูŠ ู‡ูŠูˆุตู„ ุงู…ุชู‰ุŸ"
print(classifier(text_1))
# Output: [{'label': 'track_order_status', 'score': ...}]

# Example 2
text_2 = "ุงู„ู…ู†ุชุฌ ุฏู‡ ุบุงู„ูŠุŒ ููŠู‡ ุจุฏูŠู„ ุฃุฑุฎุตุŸ"
print(classifier(text_2))
# Output: [{'label': 'product_alternatives', 'score': ...}]