I'm Wondering how to extract the username using IBM Watson Api with the conversation service.
Example:
Watson ask: What is your name?
User respond: my name is John
How to get the name value? thank you.
PS: see what i wrote in the comments
Finally, i think i found a possible answer, using this service AlchemyAPI.
In this link you will find an entity extractor demo, which can help extracting the name and understand the sentence. I think combining this two services "AlchemyAPI entity extractor tool" with the "conversation tool" can provide a good solution.
Related
Content moderation api for text fails recognizing simple drugs term as "cocaine" and other simple profanities. It seems to work only on a very limited set of profanities.
I'm using the Web GUI with my resouce key at the address: https://westus.dev.cognitive.microsoft.com/docs/services/57cf753a3f9b070c105bd2c1/operations/57cf753a3f9b070868a1f66f/console
Cristian, Content Moderator's Text API is for filtering out profanity specifically and does not check for mention of drugs.
You can use the custom lists API to create your stop-words that the API will use to scan against in addition to the built-in list of terms.
See https://westus.dev.cognitive.microsoft.com/docs/services/57cf755e3f9b070c105bd2c2/operations/57cf755e3f9b070868a1f67f.
I would also appreciate knowing more about the sample terms that you felt should have been detected. Let's figure out a way to share those if that's all right with you.
Thanks!
I have the requirement but i dont know which Google Service could fit this. I have a company name. Lets say "General Motors" or "IBM". I want to get all Google Locations where the Company Name is for example "IBM".
Is this possible? Which service would be the best for this?
I think you can use Google place API
It's easy, and you can set keyword option as you wish.
official demo
hope this help.
I know that Google Dictionary was discontinued in 2011, but the dictionary information and definitions are still available through google search results:
Does anyone know whether this information can be accessed through the Custom Search API or the Translate API?
I found this related question (but sadly without a satisfying answer).
I also needed Google Dictionary API for my project, it was not present so I decided to create one.
I scrapped the WebPage for the url https://www.google.com/#q=define+term where term is any word you want to get meaning of, and created the API, you can find it here Google Dictionary API.
How to use
The basic syntax of a URL request to the API is shown below:
https://api.dictionaryapi.dev/api/v2/entries/<--language_code-->/<--word-->
As an example, to get definition of English word hello, you can send request to:
https://api.dictionaryapi.dev/api/v2/entries/en/hello
The API also provides other meanings of the word, example sentences, and synonyms, if any.
If you want me to include any other details, please comment and I will happily extend the API to cover your needs.
In case you wish to see the code, it is on github.
Google Dictionary's content is licenced from Oxford Dictionaries' Lexico. Their API can be accessed from here.
Note their free access platform ("prototype") has a number of limitations:
1000 requests per month
Limited data access
Limited request rate
It doesn't look promising from the API Explorer
https://developers.google.com/apis-explorer/#search/dictionary/
How to add additional attributes to User in Alfresco, like Passport No,Certifications, Blood Group etc.. and need to perform CRUD operations also?
I am new to alfresco, kindly give the info as elabarately. thanks in advance.
This blog post explains how to do it in Alfresco 3.4d. The example will not work as-is for versions other than that, but you should be able to follow the same general process.
I have been looking for an autosuggest search script and I have finally found one that I like, the only problem is that I cannot find a way to get it to run off our database results.
Is there any way to customize this script so that it runs from our own database, and not off the freebase pre-defined data types?
http://www.freebase.com/docs/suggest
Have you tried overriding service_url and service_path ? There are also the corresponding params for the flyout service. It's documented in the docs that you pointed to.
As masouras says, you can override service_url and service_path, but that's not particularly helpful unless you have another service which provides the same APIs as Freebase.
Dae Park recently posted a recipe to the Freebase mailing list which might help - however, I'm not aware of anyone who's actually managed to get Suggest working with anything other than Freebase.