watson

Watson Conversation Dialogue, how to save user input using slot

亡梦爱人 提交于 2019-12-06 04:58:09
In my Watson conversation dialogue am trying to read user input using slot, my requirement is to prompt user for enter an issue description and save it in a variable named issue_description. but in slot, watson check for intent or entity before saving it into a variable. in my case i have put an intent to check with, but it is not saved into variable after the check, i always get true as issue_description. how can i save the issue _description into a variable? what should be the possible intent and entity for this? If you want to save user input then you can use to save the input in any

How to get username & password for Watson Text to Speech Service?

百般思念 提交于 2019-12-06 01:34:44
I wanted to play with the text to speech service and forked the Official Sample available at - Text to Speech Demo . The sample uses Username and password while the credentials provide only an API Key. The service(s) appear to be moving over to using API keys (in favour of username and password which is reasonable). There must be a way to provide configuration(in the create new credentials page) which would provide the username and password. I can't locate those magic parameters to pass. Any pointers would be appreciated. As you spotted, the services have moved over to using API keys through

For Watson's Speech-To-Text Unity SDK, how can you specify keywords?

旧城冷巷雨未停 提交于 2019-12-05 18:46:09
I am trying to specify keywords in Watson's Speech-To-Text Unity SDK , but I'm unsure how to do this. The details page doesn't show an example (see here: https://www.ibm.com/watson/developercloud/doc/speech-to-text/output.shtml ), and other forum posts are written for Java applications (see here: How to specify phonetic keywords for IBM Watson speech2text service? ). I've tried hard-coding these values in the RecognizeRequest class created in the "Recognize" function like so, but without success: **EDIT - this function never gets called -- ** public bool Recognize(AudioClip clip, OnRecognize

Slack-App-Watson: Watson looses intent from previous message received

心已入冬 提交于 2019-12-04 18:52:07
I am writing a simple Slack bot which can look for weather conditions for a given location. In the Watson conversation chat box, Watson is doing good: me: Weather please Watson (detected #weather_asked): Where do you want to know the weather conditions? me: Paris Watson (detected @location for intent #weather_asked): Finding weather conditions for Paris... But in my node.js app (connected to Slack), it seems that Watson is " not keeping in mind that I am providing a location for the #weather_asked intent ": me: Weather please Watson (detected #weather_asked): Where [...]? me: Paris Watson

IBM Conversation API - What should be a endpoint URL and Parameters

依然范特西╮ 提交于 2019-12-04 06:03:05
问题 I try to access IBM conversation using Postman tool but getting 404 (Resource not found) error. EndPoint : https://gateway.watsonplatform.net/conversation/api/v1/workspaces/883c7704-02c4-41fc-b8a0-aea1d0325c5a/message?version=2016-09-20 my workspace id = 883c7704-02c4-41fc-b8a0-aea1d0325c5a Is there anything wrong in endpoint or parameter?. How to pass version? 回答1: Your endpoint looks correct if you're trying to send a message to conversation: https://www.ibm.com/watson/developercloud

Bluemix Watson Conversation API to manage intents, entities

丶灬走出姿态 提交于 2019-12-04 04:37:16
问题 The documented API only allows interaction with the Watson Conversation service once it is configured. Is there any API which will allow the configuration. For example create intents, entities etc... 回答1: Good questions and we agree. We have plans shortly to expose a lower level set of APIs that will address your concerns. Brian 回答2: At this point in time the APIs for what you want to do are not publicly exposed. 回答3: Just to close out this question. The API for Watson Assistant (formerly

How can I improve Watson Speech to Text accuracy?

冷暖自知 提交于 2019-12-03 22:01:09
问题 I understand that Watson Speech To Text is somewhat calibrated for colloquial conversation and for 1 or 2 speakers. I also know that it can deal with FLAC better than WAV and OGG. I would like to know how could I improve the algorithm recognition, acoustically speaking. I mean, does increasing volume help? Maybe using some compression filter? Noise reduction? What kind of pre processing could help for this service? 回答1: the best way to improve the accuracy of the base models (which are very

IBM Watson Visual Recognition in Java

匿名 (未验证) 提交于 2019-12-03 09:19:38
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I want to use IBM Watson Visual Recognition for my android app and want to call APIs in JAVA but i don't find any example or any reference to the list of methods in JAVA to use this service. You can see the JAVA examples are missing here . Please help me to find few suitable examples or any reference to these methods. Please also tell me what is bluemix platform and is it necessary to use it in order to use IBM Watson Visual Recognition? Thanks in Advance! 回答1: Look at the Java SDK , and in particular the Visual Recognition example , which

Watson Speech to Text Response Times

匿名 (未验证) 提交于 2019-12-03 02:33:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: Having some troubles with the service while pushing to Bluemix The push request I am sending via php-curl is: POST https://stream.watsonplatform.net/speech-to-text/api/v1/recognize with the following parameters Response timeout is set to 2h (7200000 milliseconds) We are getting timeout from curl for some of our files, without any apparent reason, at first I thought was related to the duration of the recordings, but I've got in logs with successful requests for audio files ~200 seconds long and timeouts for recordings 129 seconds. I thought

Issue installing rpy2 inside Watson Studio Python 'Environment'

匿名 (未验证) 提交于 2019-12-03 01:23:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I'm trying to install rpy2 inside a Watson Studio 'environment': !pip install rpy2 However, the environments don't appear to have R available: How can I install rpy2 inside a Watson Studio Python 'Enviroment'? Is this possble? Note : Watson Studio Environments are custom containers, so an answer should only be provided if the answer is known to work on Watson Studio Environments. 回答1: Use conda instead of pip . It knows how to install the R runtime. But beware, there are many packages that need to be installed... !conda install rpy2 Fetching