Skip to content

Commit 8ec9983

Browse files
authored
Update README.md
1 parent 59d7d2f commit 8ec9983

File tree

1 file changed

+57
-0
lines changed

1 file changed

+57
-0
lines changed

README.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,3 +80,60 @@ WSD problemi için SemanticInstanceGenerator, FeaturedSemanticInstanceGenerator
8080
VectorizedSemanticInstanceGenerator sınıfı
8181

8282
Morphological Disambiguation problemi için FeaturedDisambiguationInstanceGenerator sınıfı
83+
84+
## Example Generated DataSet
85+
86+
### Word Sense Disambiguation Task
87+
88+
The following Table shows the sample text represented with sense labels and three possible features, namely the root form of the word, the part of speech (POS) tag of the word, and a boolean feature for checking the capital case.
89+
90+
|Word|Root|Pos|Capital|...|Tag|
91+
|---|---|---|---|---|---|
92+
|Yüzündeki|yüz|Noun|True|...|yüz<sup>3</sup>|
93+
|ketçap|ketçap|Noun|False|...|ketçap<sup>1</sup>|
94+
|lekesi|leke|Noun|False|...|leke<sup>2</sup>|
95+
|yüzdükten|yüz|Verb|False|...|yüz<sup>2</sup>|
96+
|sonra|sonra|PCAbl|False|...|sonra<sup>1</sup>|
97+
|çıkmış|çık|Verb|False|...|çık<sup>10</sup>|
98+
|.|.|Punctuation|False|...|.<sup>1</sup>|
99+
100+
### Named Entity Recognition Task
101+
102+
The following Table shows the sample text represented with tag labels and three possible features, namely the root form of the word, the part of speech (POS) tag of the word, and a boolean feature for checking the capital case.
103+
104+
|Word|Root|Pos|Capital|...|Tag|
105+
|---|---|---|---|---|---|
106+
|Türk|Türk|Noun|True|...|ORGANIZATION|
107+
|Hava|Hava|Noun|True|...|ORGANIZATION|
108+
|Yolları|Yol|Noun|True|...|ORGANIZATION|
109+
|bu|bu|Pronoun|False|...|NONE|
110+
|Pazartesi'den|Pazartesi|Noun|True|...|TIME|
111+
|itibaren|itibaren|Adverb|False|...|NONE|
112+
|İstanbul|İstanbul|Noun|True|...|LOCATION|
113+
|Ankara|Ankara|Noun|True|...|LOCATION|
114+
|güzergahı|güzergah|Noun|False|...|NONE|
115+
|için|için|Adverb|False|...|NONE|
116+
|indirimli|indirimli|Adjective|False|...|NONE|
117+
|satışlarını|sat|Noun|False|...|NONE|
118+
|90|90|Number|False|...|MONEY|
119+
|TL'den|TL|Noun|True|...|MONEY|
120+
|başlatacağını|başlat|Noun|False|...|NONE|
121+
|açıkladı|açıkla|Verb|False|...|NONE|
122+
|.|.|Punctuation|False|...|NONE|
123+
124+
### Shallow Parse Task
125+
126+
The following Table shows the sample text represented with chunk labels and three possible features, namely the root form of the word, the part of speech (POS) tag of the word, and a boolean feature for checking the capital case.
127+
128+
|Word|Root|Pos|Capital|...|Tag|
129+
|---|---|---|---|---|---|
130+
|Türk|Türk|Noun|True|...|ÖZNE|
131+
|Hava|Hava|Noun|True|...|ÖZNE|
132+
|Yolları|yol|Noun|True|...|ÖZNE|
133+
|Salı|Salı|Noun|True|...|ZARF TÜMLECİ|
134+
|günü|gün|Noun|False|...|ZARF TÜMLECİ|
135+
|yeni|yeni|Adjective|False|...|NESNE|
136+
|indirimli|indirimli|Adjective|False|...|NESNE|
137+
|fiyatlarını|fiyat|Noun|False|...|NESNE|
138+
|açıkladı|açıkla|Verb|False|...|YÜKLEM|
139+
|.|.|Punctuation|False|...|HİÇBİRİ|

0 commit comments

Comments
 (0)