Instructions to use NLP-EXP/QST with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use NLP-EXP/QST with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="NLP-EXP/QST")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("NLP-EXP/QST") model = AutoModelForMaskedLM.from_pretrained("NLP-EXP/QST") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
---
|
| 2 |
language:
|
| 3 |
- ar
|
| 4 |
-
---
|
|
|
|
|
|
| 1 |
---
|
| 2 |
language:
|
| 3 |
- ar
|
| 4 |
+
---
|
| 5 |
+
the QARiB-Sentiment-Tweets (QST) Model is a QARiB language model that was further pre-trained for 300K training steps and roughly 28 epochs using sentiment tweets dataset (contains over 682,000 tweets)
|