@prefix rdf: . @prefix rdfs: . @prefix dcterms: . @prefix foaf: . @prefix cpack: . # This file is a Turtle-format RDF file that describes the package. It # *must* be located in rdf/cpack/cluster_search.ttl # # Author is a FOAF Person. If you have a FOAF profile, you can link to # this. Otherwise you can specify the information inline as done below. # See http://xmlns.com/foaf/spec/ for defines fields. <> a cpack:Package ; rdf:type cpack:API ; cpack:packageName "cluster_search" ; dcterms:title "search based on clustering paths in the graph" ; cpack:author ; cpack:author [ foaf:name "Jan Wielemaker" ; foaf:mbox ; ] ; cpack:author [ a foaf:Person ; foaf:name "Jacco van Ossenbruggen" ; foaf:mbox ; ] ; cpack:primaryRepository [ a cpack:GitRepository ; cpack:gitURL ] ; cpack:author [ foaf:name "Chris Dijkshoon" ; foaf:mbox ; ] ; cpack:description """Search by keyword for RDF literals, traverse the RDF graph to link these literals to resources of a given type, and use the paths to cluster the results. The underlying graph search and clustering algoritm is the one underlying the MultimediaN demo than won the Semantic Web Challenge 2006, see http://e-culture.multimedian.nl/news/iswc2006-press-release.html """ .