BayanDuygu commited on
Commit
f13ffda
1 Parent(s): beb1b83

added read me

Browse files
Files changed (1) hide show
  1. README.md +74 -1
README.md CHANGED
@@ -1,3 +1,76 @@
1
  ---
2
- license: cc-by-sa-4.0
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - tr
4
+ license:
5
+ - cc-by-sa-4.0
6
+ multilinguality:
7
+ - monolingual
8
+ size_categories:
9
+ - 10K<n<100K
10
+ task_categories:
11
+ - token-classification
12
+ task_ids:
13
+ - named-entity-recognition
14
+ pretty_name: Turkish-WikiNER
15
  ---
16
+
17
+ # Dataset Card for "turkish-nlp-suite/turkish-wikiNER"
18
+
19
+ ## Dataset Description
20
+ - **Repository:** [Turkish-WikiNER](https://github.com/turkish-nlp-suite/Turkish-Wiki-NER-Dataset)
21
+ - **Paper:** [ACL link]()
22
+ - **Dataset:** Turkish-WikiNER
23
+ - **Domain:** Wiki
24
+ - **Number of Labels:** 18
25
+
26
+
27
+ ### Dataset Summary
28
+
29
+ Turkish NER dataset from Wikipedia sentences. 20.000 sentences are sampled and re-annotated from [Kuzgunlar NER dataset](https://data.mendeley.com/datasets/cdcztymf4k/1).
30
+ Annotations are done by [Co-one](https://co-one.co/). Many thanks to them for their contributions. This dataset is also used in our brand new spaCy Turkish packages.
31
+
32
+
33
+ ### Dataset Instances
34
+ An instance of this dataset looks as follows:
35
+
36
+ ```
37
+ {
38
+ "tokens": ["Duygu", "eve", "gitti", "."],
39
+ "tags": ["B-PERSON", "O", "O", "O"]
40
+ }
41
+ ```
42
+
43
+
44
+ ### Labels
45
+
46
+ - CARDINAL
47
+ - DATE
48
+ - EVENT
49
+ - FAC
50
+ - GPE
51
+ - LANGUAGE
52
+ - LAW
53
+ - LOC
54
+ - MONEY
55
+ - NORP
56
+ - ORDINAL
57
+ - ORG
58
+ - PERCENT
59
+ - PERSON
60
+ - PRODUCT
61
+ - QUANTITY
62
+ - TIME
63
+ - TITLE
64
+ - WORK_OF_ART
65
+
66
+ ### Data Split
67
+
68
+ | name |train|validation|test|
69
+ |---------|----:|---------:|---:|
70
+ |Turkish-WikiNER|18000| 1000|1000|
71
+
72
+
73
+
74
+ ### Citation
75
+ Coming soon
76
+