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

omtd:Chunking
  skos:inScheme omtd:OperationScheme ;
  skos:definition "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 ;
  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 ;
  a skos:Concept, omtd:Operation, owl:NamedIndividual ;
  skos:narrower omtd:NounPhraseChunking ;
  skos:altLabel "Shallow Parsing"@en, "Light parsing"@en ;
  skos:prefLabel "Chunking"@en .

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

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

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:TextProcessingCollection
  a owl:NamedIndividual, omtd:Operation, skos:Collection ;
  skos:prefLabel "Text Processing Collection"@en ;
  skos:member omtd:Chunking .

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

