Hi
I have cloned the source of Stanbol and got it running locally :-)
whereas I had to skip the tests
mvn clean install -Dmaven.test.skip=true
java -Xmx1g -jar
launchers/full/target/org.apache.stanbol.launchers.full-1.0.1-SNAPSHOT.jar
I would like to use Stanbol for Named Entity Recognition, like for example
<sentence>How old is <entity freebase-type="/people/person">Michael
Wechner</entity>?</sentence>
Textrazor does this quite well https://www.textrazor.com/demo but seems
to have some issues re upper and lower case.
Is something like this also possible with Stanbol?
I have tried
curl -X POST -H "Accept: text/turtle" -H "Content-type: text/plain"
--data "How old is Michael Wechner?" http://localhost:8080/enhancer
but that does not really seem to do the same.
Thanks for your feedback!
Michael