-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding set definition for Universal POS tags (universal dependencies …
…v2, spec: http://universaldependencies.org/u/pos/index.html) #53
- Loading branch information
Showing
1 changed file
with
82 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
@prefix upos: <http://folia.science.ru.nl/setdefinition/upos#> . | ||
@prefix skos: <http://www.w3.org/2004/02/skos/core#> . | ||
@prefix fsd: <http://folia.science.ru.nl/setdefinition#> . | ||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
@prefix xml: <http://www.w3.org/XML/1998/namespace> . | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
|
||
# Universal POS tags - Universal Dependencies v2 | ||
# Source: http://universaldependencies.org/u/pos/index.html | ||
|
||
upos:Set a skos:Collection ; | ||
skos:notation "upos" ; | ||
skos:member upos:ADJ, upos:ADP, upos:AUX, upos:CCONJ, upos:DET, upos:INTJ, upos:NOUN, upos:NUM, upos:PART, upos:PRON, upos:PROPN, upos:PUNCT, upos:SCONJ, upos:SYM, upos:VERB, upos:X ; | ||
|
||
upos:ADJ a skos:Concept ; | ||
skos:notation "ADJ" ; | ||
skos:prefLabel "Adjective" ; | ||
|
||
upos:ADP a skos:Concept ; | ||
skos:notation "ADP" ; | ||
skos:prefLabel "Adposition" ; | ||
|
||
upos:ADV a skos:Concept ; | ||
skos:notation "ADV" ; | ||
skos:prefLabel "Adverb" ; | ||
|
||
upos:AUX a skos:Concept ; | ||
skos:notation "AUX" ; | ||
skos:prefLabel "Auxiliary" ; | ||
|
||
upos:CCONJ a skos:Concept ; | ||
skos:notation "CCONJ" ; | ||
skos:prefLabel "Coordinating Conjunction" ; | ||
|
||
upos:DET a skos:Concept ; | ||
skos:notation "DET" ; | ||
skos:prefLabel "Determiner" ; | ||
|
||
upos:INTJ a skos:Concept ; | ||
skos:notation "INTJ" ; | ||
skos:prefLabel "Interjection" ; | ||
|
||
upos:NOUN a skos:Concept ; | ||
skos:notation "NOUN" ; | ||
skos:prefLabel "Noun" ; | ||
|
||
upos:NUM a skos:Concept ; | ||
skos:notation "NUM" ; | ||
skos:prefLabel "Numeral" ; | ||
|
||
upos:PART a skos:Concept ; | ||
skos:notation "PART" ; | ||
skos:prefLabel "Particle" ; | ||
|
||
upos:PRON a skos:Concept ; | ||
skos:notation "PRON" ; | ||
skos:prefLabel "Pronoun" ; | ||
|
||
upos:PROPN a skos:Concept ; | ||
skos:notation "PROPN" ; | ||
skos:prefLabel "Proper Noun" ; | ||
|
||
upos:PUNCT a skos:Concept ; | ||
skos:notation "PUNCT" ; | ||
skos:prefLabel "Punctuation" ; | ||
|
||
upos:SCONJ a skos:Concept ; | ||
skos:notation "SCONJ" ; | ||
skos:prefLabel "Subordinating Conjunction" ; | ||
|
||
upos:SYM a skos:Concept ; | ||
skos:notation "SYM" ; | ||
skos:prefLabel "Symbol" ; | ||
|
||
upos:VERB a skos:Concept ; | ||
skos:notation "VERB" ; | ||
skos:prefLabel "Verb" ; | ||
|
||
upos:X a skos:Concept ; | ||
skos:notation "X" ; | ||
skos:prefLabel "Other" ; |