Update README.md
Browse files
README.md
CHANGED
@@ -35,3 +35,49 @@ configs:
|
|
35 |
- split: test
|
36 |
path: data/test-*
|
37 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
- split: test
|
36 |
path: data/test-*
|
37 |
---
|
38 |
+
|
39 |
+
# Named Entity Recognition in Wikipedia
|
40 |
+
WikiGold is a manually annotated collection of Wikipedia text.
|
41 |
+
|
42 |
+
## Structure
|
43 |
+
- Number of labels: **9**
|
44 |
+
```Python
|
45 |
+
['O', 'B-LOC', 'I-LOC', 'B-MISC', 'I-MISC', 'B-ORG', 'I-ORG', 'B-PER', 'I-PER']
|
46 |
+
```
|
47 |
+
### Train set
|
48 |
+
Number of sentences in the train set: **1472**
|
49 |
+
|
50 |
+
Label count in train set:
|
51 |
+
| Label | Count | Percentage (%) |
|
52 |
+
|--------|-------|----------------|
|
53 |
+
| O | 26086 | 83.649190 |
|
54 |
+
| I-ORG | 1470 | 4.713805 |
|
55 |
+
| I-PER | 1303 | 4.178291 |
|
56 |
+
| I-LOC | 1175 | 3.767837 |
|
57 |
+
| I-MISC | 1151 | 3.690877 |
|
58 |
+
|
59 |
+
|
60 |
+
### Test set
|
61 |
+
Number of sentences in the test set: **369**
|
62 |
+
|
63 |
+
Label count in test set:
|
64 |
+
| Label | Count | Percentage (%) |
|
65 |
+
|--------|-------|----------------|
|
66 |
+
| O | 6635 | 83.281034 |
|
67 |
+
| I-ORG | 488 | 6.125267 |
|
68 |
+
| I-PER | 331 | 4.154638 |
|
69 |
+
| I-LOC | 272 | 3.414083 |
|
70 |
+
| I-MISC | 241 | 3.024978 |
|
71 |
+
|
72 |
+
|
73 |
+
|
74 |
+
## Citation
|
75 |
+
```
|
76 |
+
Dominic Balasuriya, Nicky Ringland, Joel Nothman, Tara Murphy, and James R. Curran. 2009.
|
77 |
+
Named Entity Recognition in Wikipedia.
|
78 |
+
In Proceedings of the 2009 Workshop on The People’s Web Meets NLP: Collaboratively Constructed Semantic Resources (People’s Web), pages 10–18, Suntec, Singapore.
|
79 |
+
Association for Computational Linguistics.
|
80 |
+
```
|
81 |
+
|
82 |
+
## License
|
83 |
+
WikiGold is licensed under CC-BY 4.0. To view this license, visit the [link](https://creativecommons.org/licenses/by/4.0/).
|