indonlp/indonlu
Updated • 1.38k • 40
How to use rahmanfadhil/indobert-finetuned-pos with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="rahmanfadhil/indobert-finetuned-pos") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("rahmanfadhil/indobert-finetuned-pos")
model = AutoModelForTokenClassification.from_pretrained("rahmanfadhil/indobert-finetuned-pos")This model is a fine-tuned version of indobenchmark/indobert-base-p2 on the indonlu 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 | Precision | Recall | F1 | Accuracy |
|---|---|---|---|---|---|---|---|
| No log | 1.0 | 420 | 0.2238 | 0.9278 | 0.9278 | 0.9278 | 0.9278 |
| 0.3621 | 2.0 | 840 | 0.1806 | 0.9437 | 0.9437 | 0.9437 | 0.9437 |
| 0.1504 | 3.0 | 1260 | 0.1762 | 0.9477 | 0.9477 | 0.9477 | 0.9477 |