After you train a model using Knowledge Studio, how do you do Conceptual Search (previous function in Concept Insight which allows you to send a document ID to return a list of document IDs of similar documents).
In AlchemyLanguage is not possible.
And documentation how to implement/integrate this?
Any info much appreciated.
Related
I am trying to build a near to realtime data push to QuickBook Online using SpringBoot. I am very interested to know the possibilities.
Please refer me some samples or documents covering the alternatives.
Thanks in advance...
I'm using Watson API to do some concept annotations.
I'd like to then run word2vec on the returned concepts so I can then measure the distances / similarity between concepts. For that I need to work against the same model. Where can I download the model file watson is using here?
To be more precise I'm using the default one which is wikipedia/en-20120601
You can't download the models. That part of the service is not exposed.
This Google IO video from 2011 introducing the Full Text Search API (at 31:13), refers to DataStore Integration by setting a few properties in attributes.
However I can't seem to find any related documentation to show how to go about using this feature.
Does anyone know if anything's changed since the release of the API and if works in another way now?
Any pointers will be greatly appreciated.
I am tring to implement a website search engine with java as an applet,I have used nutch as web crawler and cassandra as my database,I have to use a nosql database(because my teacher wants me to do),now my question is what should I do next to complete my search engine?
I have googled a lot,but all of the sites are mostly about nutch and solr,and they build search engines with integration of these two,cause solr itself is somehow a database,I don't know what should I do,do I have to use solr too to complete my search engine?is it wise to use two databases(solr and cassandra)?or I should do some thing else?
please remember I have to use cassandra.
and please first explain me if I have understood things in a wrong way and then give me a minus mark,:D
I will be really really thankfull for your help,I have got somehow confused.
by the way does solr counted as a nosql database?excuse me,I am new to them all.
Check out Solr's Data Import Handler and see if you feel it would work. It allows you to query your database and store the results with Solr to which then Solr can manipulate the reuslts. Nutch also has very good integration with Solr should you choose to use it.
I am currently using Apache Solr to build a search engine. The queries in Solr are of the field:value format. Now I want to use a part-of-speech tagger to separate the subject, verb and predicate and search the values in each fields. For example, if I input "Who likes Starbucks" then I need some code to give me "q=subject:*&verb=likes&object=starbucks". Is there any library that can handle this job? Thank you!
I think several people have used UIMA for this, see solr wiki
There are a number of POS taggers. Here is another StackOverflow posting about this: What is a good Java library for Parts-Of-Speech tagging?