Tirendaz commited on
Commit
690b256
1 Parent(s): f146ad8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -4
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
- This model is a fine-tuned version of [xlm-roberta-base](https://huggingface.co/xlm-roberta-base) on the xtreme dataset.
34
- It achieves the following results on the evaluation set:
35
- - Loss: 0.1343
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: