Token Classification
Transformers
Safetensors
Kyrgyz
xlm-roberta
kyrgyz
baseline
xlm-r-base
kyrgyz-ner
Instructions to use metinovadilet/kyrgyz-ner-xlmr with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use metinovadilet/kyrgyz-ner-xlmr with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="metinovadilet/kyrgyz-ner-xlmr")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("metinovadilet/kyrgyz-ner-xlmr") model = AutoModelForTokenClassification.from_pretrained("metinovadilet/kyrgyz-ner-xlmr", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Add license and intended-use sections to model card
Browse files
README.md
CHANGED
|
@@ -10,6 +10,7 @@ tags:
|
|
| 10 |
- baseline
|
| 11 |
- xlm-r-base
|
| 12 |
- kyrgyz-ner
|
|
|
|
| 13 |
---
|
| 14 |
|
| 15 |
# Kyrgyz NER XLM-R Base
|
|
@@ -47,3 +48,11 @@ This repository contains a fine-tuned XLM-R Base checkpoint for named entity rec
|
|
| 47 |
## Notes
|
| 48 |
|
| 49 |
This is a multilingual reference checkpoint used for comparison with KyrgyzBERT and KyrgyzBERTv2. Stronger published XLM-R-style KyrgyzNER systems exist; this checkpoint is a local reference run.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
- baseline
|
| 11 |
- xlm-r-base
|
| 12 |
- kyrgyz-ner
|
| 13 |
+
license: other
|
| 14 |
---
|
| 15 |
|
| 16 |
# Kyrgyz NER XLM-R Base
|
|
|
|
| 48 |
## Notes
|
| 49 |
|
| 50 |
This is a multilingual reference checkpoint used for comparison with KyrgyzBERT and KyrgyzBERTv2. Stronger published XLM-R-style KyrgyzNER systems exist; this checkpoint is a local reference run.
|
| 51 |
+
|
| 52 |
+
## Intended Use
|
| 53 |
+
|
| 54 |
+
This checkpoint is intended for baseline/reference evaluation for Kyrgyz named entity recognition. It is intended for research, reproducibility, and educational use by the Kyrgyz NLP community. It should not be used for high-stakes decisions or production deployment without separate validation for the target domain.
|
| 55 |
+
|
| 56 |
+
## License and Usage
|
| 57 |
+
|
| 58 |
+
License metadata is set to `other`. The checkpoint is released for research and reproducibility. Downstream datasets and base models may have their own licenses or usage terms; users are responsible for following the corresponding dataset cards and upstream model licenses. The checkpoint is provided without warranty.
|