Instructions to use Narshion/mWACH_mBERT_System with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Narshion/mWACH_mBERT_System with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Narshion/mWACH_mBERT_System")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("Narshion/mWACH_mBERT_System") model = AutoModelForSequenceClassification.from_pretrained("Narshion/mWACH_mBERT_System", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -12,7 +12,7 @@ should probably proofread and complete it, then remove this comment. -->
|
|
| 12 |
|
| 13 |
# model
|
| 14 |
|
| 15 |
-
This model is a fine-tuned version of [bert-base-multilingual-cased](https://huggingface.co/bert-base-multilingual-cased) on
|
| 16 |
It achieves the following results on the evaluation set:
|
| 17 |
- Loss: 1.6344
|
| 18 |
|
|
|
|
| 12 |
|
| 13 |
# model
|
| 14 |
|
| 15 |
+
This model is a fine-tuned version of [bert-base-multilingual-cased](https://huggingface.co/bert-base-multilingual-cased) on mWACH NEO dataset.
|
| 16 |
It achieves the following results on the evaluation set:
|
| 17 |
- Loss: 1.6344
|
| 18 |
|