Multilingual NLP
Collection
For assignments • 13 items • Updated • 1
How to use onkej/zh_pos_tagger with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="onkej/zh_pos_tagger") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("onkej/zh_pos_tagger")
model = AutoModelForTokenClassification.from_pretrained("onkej/zh_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 |
|---|---|---|---|---|
| 0.8651 | 1.0 | 51 | 0.6549 | 0.8087 |
| 0.4714 | 2.0 | 102 | 0.3938 | 0.8901 |
| 0.3783 | 3.0 | 153 | 0.3511 | 0.9013 |
Base model
google-bert/bert-base-multilingual-cased