@prefix omtd: <http://w3id.org/meta-share/omtd-share/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .

omtd:SupportOperation
  rdfs:label "Support operation"@en ;
  skos:prefLabel "Support operation"@en ;
  a owl:NamedIndividual, omtd:Operation, skos:Concept .

skos:Concept a owl:Class .
owl:NamedIndividual
  rdfs:label "Named individual"@en ;
  a owl:Class .

omtd:Operation
  rdfs:label "Operation"@en ;
  a owl:Class .

omtd:WordSenseInduction skos:related omtd:WordSenseDisambiguation .
omtd:TextProcessingCollection
  a owl:NamedIndividual, omtd:Operation, skos:Collection ;
  skos:prefLabel "Text Processing Collection"@en ;
  skos:member omtd:WordSenseDisambiguation .

omtd:WordSenseDisambiguation
  skos:inScheme omtd:OperationScheme ;
  skos:altLabel "WSD"@en ;
  skos:broader omtd:SupportOperation ;
  skos:definition "Word Sense Disambiguation is a subtask of semantic tagging, which consists of assigning a semantic class (sense) to a lexical item as specified by a semantic lexicon. If the semantic lexicon specifies more than one sense for a particular lexical item, a disambiguation procedure is needed to decide upon the most appropriate sense(s) for any given instance of the lexical item in text. WSD is not a self-contained application, but it may be included as an integrated part of a semantic processor."@en ;
  a omtd:Operation, skos:Concept, owl:NamedIndividual ;
  rdfs:comment "The process/task of identifying which sense of a word with multiple meanings is used in a particular context; the selection of the sense is made from a list of the word's senses"@en ;
  rdfs:label "Word Sense Disambiguation"@en ;
  skos:prefLabel "Word Sense Disambiguation"@en .

omtd:OperationScheme
  rdfs:label "Operation Taxonomy"@en ;
  skos:prefLabel "Operation Taxonomy"@en ;
  a owl:NamedIndividual, skos:ConceptScheme .

