ktagowski asawczyn commited on
Commit
6fd17a2
1 Parent(s): 780a6a8

Update README.md (#4)

Browse files

- Update README.md (c27bc78b2d3e8e9d5e5c862102cfafc6f2db7ca5)


Co-authored-by: Albert Sawczyn <asawczyn@users.noreply.huggingface.co>

Files changed (1) hide show
  1. README.md +9 -6
README.md CHANGED
@@ -28,18 +28,21 @@ task_ids:
28
  KPWR-NER is a part the Polish Corpus of Wrocław University of Technology (*Korpus Języka Polskiego Politechniki Wrocławskiej*). Its objective is named entity recognition for fine-grained categories of entities. It is the ‘n82’ version of the KPWr, which means that number of classes is restricted to 82 (originally 120). During corpus creation, texts were annotated by humans from various sources, covering many domains and genres.
29
 
30
  ## Tasks (input, output and metrics)
31
-
32
  Named entity recognition (NER) - tagging entities in text with their corresponding type.
33
 
34
- Input ('*tokens'* column): sequence of tokens
 
 
 
 
35
 
36
- Output ('*ner'* column): sequence of predicted tokens’ classes in BIO notation (82 possible classes, described in detail in the annotation guidelines)
37
 
38
- *example:*
39
 
40
- [*‘Roboty’, ‘mają’, ‘kilkanaście’, ‘lat’, ‘i’, ‘pochodzą’, ‘z’, ‘USA’, ‘,’, ‘Wysokie’, ‘napięcie’, ‘jest’, ‘dużo’, ‘młodsze’, ‘,’, ‘powstało’, ‘w’, ‘Niemczech’, ‘.’*] [*‘B-nam_pro_title’, ‘O’, ‘O’, ‘O’, ‘O’, ‘O’, ‘O’, ‘B-nam_loc_gpe_country’, ‘O’, ‘B-nam_pro_title’, ‘I-nam_pro_title’, ‘O’, ‘O’, ‘O’, ‘O’, ‘O’, ‘O’, ‘B-nam_loc_gpe_country’, ‘O’*]
41
 
42
- Measurements:
43
 
44
  ## Data splits
45
 
28
  KPWR-NER is a part the Polish Corpus of Wrocław University of Technology (*Korpus Języka Polskiego Politechniki Wrocławskiej*). Its objective is named entity recognition for fine-grained categories of entities. It is the ‘n82’ version of the KPWr, which means that number of classes is restricted to 82 (originally 120). During corpus creation, texts were annotated by humans from various sources, covering many domains and genres.
29
 
30
  ## Tasks (input, output and metrics)
 
31
  Named entity recognition (NER) - tagging entities in text with their corresponding type.
32
 
33
+ **Input** ('*tokens'* column): sequence of tokens
34
+
35
+ **Output** ('*ner'* column): sequence of predicted tokens’ classes in BIO notation (82 possible classes, described in detail in the annotation guidelines)
36
+
37
+ **Measurements**: F1-score (seqeval)
38
 
39
+ **Example**:
40
 
41
+ Input: `[‘Roboty’, ‘mają’, ‘kilkanaście’, ‘lat’, ‘i’, ‘pochodzą’, ‘z’, ‘USA’, ‘,’, ‘Wysokie’, ‘napięcie’, ‘jest’, ‘dużo’, ‘młodsze’, ‘,’, ‘powstało’, ‘w’, ‘Niemczech’, ‘.’]`
42
 
43
+ Input (translated by DeepL): `Robots are more than a dozen years old and come from the US, High Voltage is much younger, having been developed in Germany.`
44
 
45
+ Output: `[‘B-nam_pro_title’, ‘O’, ‘O’, ‘O’, ‘O’, ‘O’, ‘O’, ‘B-nam_loc_gpe_country’, ‘O’, ‘B-nam_pro_title’, ‘I-nam_pro_title’, ‘O’, ‘O’, ‘O’, ‘O’, ‘O’, ‘O’, ‘B-nam_loc_gpe_country’, ‘O’]`
46
 
47
  ## Data splits
48