Skip to content

Commit

Permalink
Adding set definition for Universal POS tags (universal dependencies …
Browse files Browse the repository at this point in the history
  • Loading branch information
proycon committed Aug 17, 2018
1 parent 4b4ed12 commit 9500294
Showing 1 changed file with 82 additions and 0 deletions.
82 changes: 82 additions & 0 deletions setdefinitions/universal-pos.ttl
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" ;

0 comments on commit 9500294

Please sign in to comment.