Instructions to use Nada81/Nada_Model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Nada81/Nada_Model with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="Nada81/Nada_Model")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("Nada81/Nada_Model") model = AutoModel.from_pretrained("Nada81/Nada_Model") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -9,3 +9,9 @@ license: mit
|
|
| 9 |
# Model Title
|
| 10 |
|
| 11 |
Your model description and additional information go here.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
# Model Title
|
| 10 |
|
| 11 |
Your model description and additional information go here.
|
| 12 |
+
|
| 13 |
+
### Nada_Model
|
| 14 |
+
Multilingual sentiment classification (Label_0: mixed, Label_1: negative, Label_2: positive) of Arabic reviews by fine-tuning XLM-Roberta-Large.
|
| 15 |
+
Zero shot classification of other languages (also works in mixed languages - ex. Arabic & English). Mixed category is not accurate and may confuse other
|
| 16 |
+
classes (was based on a rate of 3 out of 5 in reviews).
|
| 17 |
+
|