Tirendaz commited on
Commit
c0e63d0
1 Parent(s): b374b36

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -7
README.md CHANGED
@@ -41,14 +41,11 @@ language:
41
  should probably proofread and complete it, then remove this comment. -->
42
 
43
  # roberta-base-NER
 
44
 
45
- This model is a fine-tuned version of [xlm-roberta-base](https://huggingface.co/xlm-roberta-base) on the xtreme dataset.
46
- It achieves the following results on the evaluation set:
47
- - Loss: 0.2935
48
- - Precision: 0.8004
49
- - Recall: 0.8111
50
- - F1: 0.8057
51
- - Accuracy: 0.9194
52
 
53
  ## Intended uses & limitations
54
 
@@ -70,6 +67,16 @@ ner_results = nlp(example)
70
  print(ner_results)
71
  ```
72
 
 
 
 
 
 
 
 
 
 
 
73
  ### Training hyperparameters
74
 
75
  The following hyperparameters were used during training:
 
41
  should probably proofread and complete it, then remove this comment. -->
42
 
43
  # roberta-base-NER
44
+ ## Model description
45
 
46
+ **xlm-roberta-base-multilingual-cased-ner** is a **Named Entity Recognition** model based on a fine-tuned XLM-RoBERTa base model.
47
+ It has been trained to recognize three types of entities: location (LOC), organizations (ORG), and person (PER).
48
+ Specifically, this model is a *XLMRoreberta-base-multilingual-cased* model that was fine-tuned on an aggregation of 10 high-resourced languages.
 
 
 
 
49
 
50
  ## Intended uses & limitations
51
 
 
67
  print(ner_results)
68
  ```
69
 
70
+ Abbreviation|Description
71
+ -|-
72
+ O|Outside of a named entity
73
+ B-PER |Beginning of a person’s name right after another person’s name
74
+ I-PER |Person’s name
75
+ B-ORG |Beginning of an organisation right after another organisation
76
+ I-ORG |Organisation
77
+ B-LOC |Beginning of a location right after another location
78
+ I-LOC |Location
79
+
80
  ### Training hyperparameters
81
 
82
  The following hyperparameters were used during training: