jss1clist
(Jane Smits)
1
How do I set the 'docs.opennlp.models.path' option when creating a new database using Java API (Stardog v. 5.2.2)
Specifically, I'm trying to do the following in Java.
$ stardog-admin db create -o search.enabled=true docs.opennlp.models.path=/data/stardog/opennlp -n movies movies.trig
jess
(Jess Balint)
2
Hi Jane,
Assuming you have an AdminConnection
you need to set the option value. Something like this:
AdminConnection a;
a.newDatabase("asd").set(StardocsOptions.DOCS_OPENNLP_MODELS_PATH, "/path/to/models");
It looks like this option isn’t present in the Javadoc. We’ll get it added. Let us know if you have any further questions.
Jess
system
(system)
Closed
3
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.