2.2.2.1.3.3 Postkoordination (In Bearbeitung)
1 Definition
Die Deskriptoren zur Beschreibung komplexer Sachverhalte werden im Zuge des Retrieval koordiniert.
2 Terminologie
Post-Koordination
3 Erläuterung
Postkoordination bedeutet, dass die Suchfrage beim Retrieval mittels zwei oder mehr einfacher Termini formuliert wird, zum Beispiel "Kind + Krankheit" (= finde Indexate, in denen sowohl Kind als auch Krankheit enthalten ist), "Italien + Kunst". Das Problem bei der Postkoordination sind semantische Unklarheiten, zum Beispiel "Auto + Bahn" = Autobahn?
Post-coordination on the other hand is performed as part of an information retrieval task—for example, if a given document is indexed with two distinct concepts "Bicycles" and "Repairing" and a user decides to perform a search for all documents that are indexed with "Bicycles" and "Repairing".
4 Beispiel
5 Darstellung in xTree
6 Indexierung und Retrieval
Post-coordination as an information retrieval activity lends itself to indirect representation as a SPARQL query to access RDF data [SPARQL]. For example, given two distinct concepts:
ex:bicycles skos:prefLabel "Bicycles"@en. ex:repairing skos:prefLabel "Repairing"@en.
one could construct a SPARQL query to return only the documents that are indexed with both concepts
SELECT ?document WHERE {
?document dct:subject ex:bicycles.
?document dct:subject ex:repairing.
}
7 Zusammenfassung
8 Siehe auch
9 Quellen