Commit
·
3ae7a92
1
Parent(s):
5180c15
add model cart
Browse files
README.md
CHANGED
@@ -1,3 +1,50 @@
|
|
1 |
# Info
|
2 |
|
3 |
NER model trained on everest ner dataset for Nepali NER.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# Info
|
2 |
|
3 |
NER model trained on everest ner dataset for Nepali NER.
|
4 |
+
|
5 |
+
---
|
6 |
+
language: ne
|
7 |
+
tags:
|
8 |
+
- token-classification
|
9 |
+
- ner
|
10 |
+
- xlm-roberta
|
11 |
+
- nepali
|
12 |
+
- everest-ner
|
13 |
+
license: mit
|
14 |
+
datasets:
|
15 |
+
- everest-ner
|
16 |
+
metrics:
|
17 |
+
- precision
|
18 |
+
- recall
|
19 |
+
- f1
|
20 |
+
- accuracy
|
21 |
+
model_name: NER Model for Nepali (Everest NER)
|
22 |
+
model_type: xlm-roberta-base
|
23 |
+
base_model: xlm-roberta-base
|
24 |
+
pipeline_tag: token-classification
|
25 |
+
---
|
26 |
+
|
27 |
+
# NER Model for Nepali (Everest NER)
|
28 |
+
|
29 |
+
## Model Overview
|
30 |
+
This model is a Named Entity Recognition (NER) model fine-tuned on the Everest NER dataset, which is a dataset for recognizing named entities in Nepali text. The base model used for fine-tuning is [xlm-roberta-base](https://huggingface.co/xlm-roberta-base), a multilingual transformer model that supports over 100 languages.
|
31 |
+
|
32 |
+
## Intended Use
|
33 |
+
The model is designed to identify and classify named entities in Nepali text into categories such as Person, Organization, Location, and others. It is particularly useful for NLP applications involving the Nepali language, such as information extraction, text analysis, and content categorization.
|
34 |
+
|
35 |
+
### How to Use
|
36 |
+
You can use this model with the Hugging Face `transformers` library as follows:
|
37 |
+
|
38 |
+
```python
|
39 |
+
from transformers import pipeline
|
40 |
+
|
41 |
+
# Load the NER pipeline
|
42 |
+
ner = pipeline("ner", model="your-username/everest-ner-xlm-roberta-base")
|
43 |
+
|
44 |
+
# Example input
|
45 |
+
text = "सगरमाथा विश्वको अग्लो हिमाल हो।"
|
46 |
+
|
47 |
+
# Perform NER
|
48 |
+
entities = ner(text)
|
49 |
+
print(entities)
|
50 |
+
|