@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:QuestionAnswering
  skos:prefLabel "Question Answering"@en ;
  a skos:Concept, owl:NamedIndividual, omtd:ModelFunction ;
  skos:altLabel "Answer Extraction"@en, "Textual Question Answering"@en, "QA"@en, "AE"@en ;
  rdfs:comment "The task/process where computer systems try to automatically answer questions posed by users in the form of natural language."@en ;
  rdfs:label "Question Answering"@en ;
  skos:inScheme omtd:ModelFunctionScheme ;
  skos:topConceptOf omtd:ModelFunctionScheme ;
  skos:scopeNote "Question answering or Answer extraction (AE) aims at retrieving those exact passages of a document that directly answer a given user question. AE is more ambitious than information retrieval and information extraction in that the retrieval results are short phrases, not entire documents, and in that the queries may be arbitrarily specific. It is less ambitious than full-fledged question answering in that the answers are not generated from a knowledge base but looked up in the text of documents."@en .

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 ;
  skos:hasTopConcept omtd:QuestionAnswering .

