universal-dependencies/universal_dependencies
Updated • 4.72k • 34
How to use summerdevlin46/glot500_model_ru_taiga with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="summerdevlin46/glot500_model_ru_taiga") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("summerdevlin46/glot500_model_ru_taiga")
model = AutoModelForTokenClassification.from_pretrained("summerdevlin46/glot500_model_ru_taiga")# Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("summerdevlin46/glot500_model_ru_taiga")
model = AutoModelForTokenClassification.from_pretrained("summerdevlin46/glot500_model_ru_taiga")This model is a fine-tuned version of cis-lmu/glot500-base on the universal_dependencies 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 | 197 | 1.0680 | 0.7495 | 0.7185 | 0.7337 | 0.7598 |
| No log | 2.0 | 394 | 0.6914 | 0.8393 | 0.8246 | 0.8318 | 0.8492 |
Base model
cis-lmu/glot500-base
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="summerdevlin46/glot500_model_ru_taiga")