-
Notifications
You must be signed in to change notification settings - Fork 58
Creating the SameAs DBpedia Index
F. Conrads edited this page May 7, 2019
·
5 revisions
Gerbil is capable of using a lucene indexed sameAs index retrieved from a DBpedia dump. The index is much faster in finding sameAs relations than the usual HTTP retrieval using the official DBpedia sparql endpoint.
To create and use the index follow these steps:
- clone the repo.
- execute index.sh to create the index (may take a while)
- Move the files located in
lucene_index
toindexes/dbpedia
in your gerbil folder - Change your gerbil.properties accordingly
If not already stated in the gerbil.properties file add these lines:
org.aksw.gerbil.semantic.sameas.impl.index.IndexBasedSameAsRetriever.domain=dbpedia.org
org.aksw.gerbil.semantic.sameas.impl.index.IndexBasedSameAsRetriever.folder=${org.aksw.gerbil.DataPath}/indexes/dbpedia
Thats it.