Update README.md
Browse files
README.md
CHANGED
@@ -29,11 +29,11 @@ model-index:
|
|
29 |
should probably proofread and complete it, then remove this comment. -->
|
30 |
|
31 |
# multilingual-xlm-roberta-for-ner
|
|
|
32 |
|
33 |
-
|
34 |
-
It
|
35 |
-
-
|
36 |
-
- F1: 0.8608
|
37 |
|
38 |
#### How to use
|
39 |
|
@@ -53,6 +53,16 @@ ner_results = nlp(example)
|
|
53 |
print(ner_results)
|
54 |
```
|
55 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
### Training hyperparameters
|
57 |
|
58 |
The following hyperparameters were used during training:
|
|
|
29 |
should probably proofread and complete it, then remove this comment. -->
|
30 |
|
31 |
# multilingual-xlm-roberta-for-ner
|
32 |
+
## Model description
|
33 |
|
34 |
+
**xlm-roberta-base-multilingual-cased-ner ** is a **Named Entity Recognition** model based on a fine-tuned XLM-RoBERTa base model.
|
35 |
+
It has been trained to recognize three types of entities: location (LOC), organizations (ORG), and person (PER).
|
36 |
+
Specifically, this model is a *XLMRoreberta-base-multilingual-cased* model that was fine-tuned on an aggregation of 10 high-resourced languages.
|
|
|
37 |
|
38 |
#### How to use
|
39 |
|
|
|
53 |
print(ner_results)
|
54 |
```
|
55 |
|
56 |
+
Abbreviation|Description
|
57 |
+
-|-
|
58 |
+
O|Outside of a named entity
|
59 |
+
B-PER |Beginning of a person’s name right after another person’s name
|
60 |
+
I-PER |Person’s name
|
61 |
+
B-ORG |Beginning of an organisation right after another organisation
|
62 |
+
I-ORG |Organisation
|
63 |
+
B-LOC |Beginning of a location right after another location
|
64 |
+
I-LOC |Location
|
65 |
+
|
66 |
### Training hyperparameters
|
67 |
|
68 |
The following hyperparameters were used during training:
|