Datasets:

Modalities:
Text
Formats:
json
Languages:
Serbian
Tags:
NER
Libraries:
Datasets
pandas
License:
procesaur commited on
Commit
11b3f5e
1 Parent(s): a7fe28a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -3
README.md CHANGED
@@ -7,6 +7,8 @@ language:
7
  pretty_name: SrpELTeC-gold-NER training dataset
8
  size_categories:
9
  - 100K<n<1M
 
 
10
  ---
11
 
12
 
@@ -22,17 +24,27 @@ dataset = load_dataset("jerteh/SrpELTeC-gold-NER")
22
  Preview:
23
 
24
  ```python
25
-
 
 
 
 
 
 
 
 
 
 
 
26
  ```
27
 
28
  Citation:
29
 
30
  ```bibtex
31
-
32
  @inproceedings{frontini2020named,
33
  title={Named entity recognition for distant reading in ELTeC},
34
  author={Frontini, Francesca and Brando, Carmen and Byszuk, Joanna and Galleron, Ioana and Santos, Diana and Stankovi{\'c}, Ranka},
35
  booktitle={CLARIN Annual Conference 2020},
36
  year={2020}
37
  }
38
- ```
 
7
  pretty_name: SrpELTeC-gold-NER training dataset
8
  size_categories:
9
  - 100K<n<1M
10
+ tags:
11
+ - NER
12
  ---
13
 
14
 
 
24
  Preview:
25
 
26
  ```python
27
+ ds = dataset["train"][36042]
28
+ for x, y, z in zip(ds["token"], ds["lemma"], ds["ner"]):
29
+ print(x, y, z)
30
+
31
+
32
+ Setila setiti O
33
+ se se O
34
+ da da O
35
+ je jesam O
36
+ Petrovski Petrovski B-EVENT
37
+ post post I-EVENT
38
+ . . O
39
  ```
40
 
41
  Citation:
42
 
43
  ```bibtex
 
44
  @inproceedings{frontini2020named,
45
  title={Named entity recognition for distant reading in ELTeC},
46
  author={Frontini, Francesca and Brando, Carmen and Byszuk, Joanna and Galleron, Ioana and Santos, Diana and Stankovi{\'c}, Ranka},
47
  booktitle={CLARIN Annual Conference 2020},
48
  year={2020}
49
  }
50
+ ```