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

omtd:Chunking
  a omtd:ModelFunction, skos:Concept, owl:NamedIndividual ;
  rdfs:label "Chunking"@en ;
  rdfs:comment "The task/process of dividing a sentence into chunks (non-overlapping text segments consisting of a head and preceding function words and/or modifiers)"@en ;
  skos:broader omtd:Parsing ;
  skos:inScheme omtd:ModelFunctionScheme ;
  skos:narrower omtd:NounPhraseChunking ;
  skos:altLabel "Shallow Parsing"@en, "Light parsing"@en ;
  skos:prefLabel "Chunking"@en ;
  skos:scopeNote "Shallow parsing refers to a class of techniques for identifying phrasal chunks in texts without assigning deep hierarchical structures. Cascaded finite-state models are often used for shallow parsing. Shallow parsing techniques are used because they are more time-efficient and more error-tolerant than \"\"deep\"\" parsers, and give rise to fewer ambiguities."@en .

omtd:NounPhraseChunking
  rdfs:label "Noun phrase chunking"@en ;
  skos:prefLabel "Noun phrase chunking"@en ;
  a omtd:ModelFunction, owl:NamedIndividual, skos:Concept ;
  skos:broader omtd:Chunking .

omtd:Parsing
  rdfs:label "Parsing"@en ;
  skos:prefLabel "Parsing"@en ;
  a omtd:ModelFunction, owl:NamedIndividual, skos:Concept ;
  skos:narrower omtd:Chunking .

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

omtd:ModelFunction
  rdfs:label "Model function"@en ;
  a owl:Class .

omtd:ModelFunctionScheme
  rdfs:label "Model Function Taxonomy"@en ;
  skos:prefLabel "Model Function Taxonomy"@en ;
  a owl:NamedIndividual, skos:ConceptScheme .

