Multilingual NLP
Collection
For assignments • 13 items • Updated • 1
How to use onkej/th_pos_tagger with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="onkej/th_pos_tagger") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("onkej/th_pos_tagger")
model = AutoModelForTokenClassification.from_pretrained("onkej/th_pos_tagger")This model is a fine-tuned version of bert-base-multilingual-cased on the None dataset. It achieves the following results on the evaluation set:
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Accuracy |
|---|---|---|---|---|
| 1.0922 | 1.0 | 50 | 0.8761 | 0.7670 |
| 0.6916 | 2.0 | 100 | 0.5784 | 0.8499 |
| 0.5561 | 3.0 | 150 | 0.5186 | 0.8591 |
Base model
google-bert/bert-base-multilingual-cased