-
Notifications
You must be signed in to change notification settings - Fork 0
/
cainteoir.ttl
158 lines (139 loc) · 4.68 KB
/
cainteoir.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# SKOS Description of the Cainteoir Part-of-Speech Tagset
#
# Copyright (c) 2016-2017 Reece H. Dunn (Cainteoir Technologies)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
@prefix dct: <http://purl.org/dc/terms/> .
@prefix pos: <http://reecedunn.co.uk/linguistics/model/pos/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix ctts: <http://reecedunn.co.uk/linguistics/pos/cainteoir/> .
@prefix fl: <http://reecedunn.co.uk/linguistics/pos/festlex/> .
ctts: a skos:ConceptScheme ;
dct:title "Cainteoir Part of Speech Tagset"@en ;
dct:description "This is the Part-of-Speech tagset used by Cainteoir Text-to-Speech and related projects." ;
skos:notation "cainteoir" ;
skos:hasTopConcept ctts:adj ;
skos:hasTopConcept ctts:adv ;
skos:hasTopConcept ctts:conj ;
skos:hasTopConcept ctts:det ;
skos:hasTopConcept ctts:intj ;
skos:hasTopConcept ctts:noun ;
skos:hasTopConcept ctts:num ;
skos:hasTopConcept ctts:prep ;
skos:hasTopConcept ctts:pron ;
skos:hasTopConcept ctts:verb ;
skos:hasTopConcept ctts:2 ;
skos:hasTopConcept ctts:3 .
ctts:adj a skos:Concept ;
skos:prefLabel "adjective"@en ;
skos:notation "adj" ;
skos:narrower ctts:adj_attr ;
skos:narrower ctts:adj_pred ;
skos:narrower ctts:ord ;
skos:exactMatch pos:adjective ;
skos:exactMatch fl:j ;
skos:relatedMatch fl:y ;
skos:inScheme ctts: .
ctts:adj_attr a skos:Concept ;
skos:prefLabel "attributive adjective"@en ;
skos:notation "adj@attr" ;
skos:broader ctts:adj ;
skos:inScheme ctts: .
ctts:adj_pred a skos:Concept ;
skos:prefLabel "predicative adjective"@en ;
skos:notation "adj@pred" ;
skos:broader ctts:adj ;
skos:inScheme ctts: .
ctts:adv a skos:Concept ;
skos:prefLabel "adverb"@en ;
skos:notation "adv" ;
skos:exactMatch pos:adverb ;
skos:inScheme ctts: .
ctts:conj a skos:Concept ;
skos:prefLabel "conjunction"@en ;
skos:notation "conj" ;
skos:exactMatch pos:conjunction ;
skos:inScheme ctts: .
ctts:det a skos:Concept ;
skos:prefLabel "determiner"@en ;
skos:notation "det" ;
skos:exactMatch pos:determiner ;
skos:exactMatch fl:dt ;
skos:inScheme ctts: .
ctts:intj a skos:Concept ;
skos:prefLabel "interjection"@en ;
skos:altLabel "exclamation"@en ;
skos:notation "intj" ;
skos:exactMatch pos:interjection ;
skos:inScheme ctts: .
ctts:noun a skos:Concept ;
skos:prefLabel "noun"@en ;
skos:notation "noun" ;
skos:exactMatch pos:noun ;
skos:exactMatch fl:n ;
skos:inScheme ctts: .
ctts:num a skos:Concept ;
skos:prefLabel "number"@en ;
skos:altLabel "numeral"@en ;
skos:notation "num" ;
skos:related ctts:ord ;
skos:exactMatch pos:number ;
skos:inScheme ctts: .
ctts:ord a skos:Concept ;
skos:prefLabel "ordinal number"@en ;
skos:notation "ord" ;
skos:broader ctts:adj ;
skos:related ctts:num ;
skos:exactMatch pos:ordinal ;
skos:inScheme ctts: .
ctts:prep a skos:Concept ;
skos:prefLabel "preposition"@en ;
skos:notation "prep" ;
skos:exactMatch pos:preposition ;
skos:inScheme ctts: .
ctts:pron a skos:Concept ;
skos:prefLabel "pronoun"@en ;
skos:notation "pron" ;
skos:exactMatch pos:pronoun ;
skos:inScheme ctts: .
ctts:verb a skos:Concept ;
skos:prefLabel "verb"@en ;
skos:notation "verb" ;
skos:narrower ctts:verb_past ;
skos:exactMatch pos:verb ;
skos:exactMatch fl:v ;
skos:relatedMatch fl:vl ;
skos:inScheme ctts: .
ctts:verb_past a skos:Concept ;
skos:prefLabel "past tense verb"@en ;
skos:notation "verb@past" ;
skos:broader ctts:verb ;
skos:broadMatch pos:verb ;
skos:exactMatch fl:v_p ;
skos:inScheme ctts: .
ctts:2 a skos:Concept ;
skos:prefLabel "2"@en ;
skos:notation "2" ;
skos:note "An alternate pronunciation." ;
skos:inScheme ctts: .
ctts:3 a skos:Concept ;
skos:prefLabel "3"@en ;
skos:notation "3" ;
skos:note "An alternate pronunciation." ;
skos:inScheme ctts: .