ibm-cloud

How can I link IBM Watson Assistant with Watson Discovery

梦想的初衷 提交于 2021-02-20 02:53:07
问题 I wish to make a chatbot using the two services listed in the title. Watson assistant is used to make the dialog for the chatbot while watson discovery allows for finding information in a large variety of documents such as .html, .pdf files. I want to make a chatbot that uses these two services. The way the chatbot would work is that when a user says something into the chatbot, it will go through watson discovery and run that query which will then return results back to the user. I currently

Linking IBM Cloud Object Storage to Watson Studio new project?

余生颓废 提交于 2021-02-17 06:10:06
问题 I've attempted to create object storage for a new Watson Studio project, but get the same 'Reseller channel...is invalid' as other comments. I've tried changing my region from Dallas, to London or Tokyo as one answer suggested, but I get an 'Unexpected response code: 500' message. I can create an object storage, using the manual workaround here: https://cloud.ibm.com/catalog/services/cloud-object-storage But then how do I select this object storage when I create my new project? I can see the

How to create duplicate block storage from snapshot using Softlayer rest api

一曲冷凌霜 提交于 2021-02-17 05:54:51
问题 I have created snapshot but unable to create block storage from snapshot. We cant find any Api document. Anyone help me on this request 回答1: Try using the following slcli command to order a duplicate volume: slcli block volume-duplicate --origin-snapshot-id 11111 --billing monthly 22222 Replace 11111 for your snapshot id and 22222 for your volume id. To get the list of the snapshot ids for your volume you can use the following command: slcli block snapshot-list 1234 Replace 1234 for your

IBM Watson Assistant: How to solve web_action error “Internal error: Content-type can not be retrieved.”

99封情书 提交于 2021-02-10 14:26:48
问题 I'm trying to connect IBM Cloud Functions with a Watson Assistant dialog as web_action. So I have specified web_action as following in watson dialog json editor. "actions": [ { "name": "rajesh@heltha.co_dev/default/callKinvey", "type": "web_action", "parameters": { }, "credentials": "$private.mycredential", "result_variable": "context.my_input_returned" } ] Now, the issue is while testing assistant I'm getting following error Internal error: Content-type can not be retrieved. (and there is 1

when training data using IBM Bluemix natural language classifier api, return data too small

天涯浪子 提交于 2021-02-10 12:47:57
问题 When I follow "Getting started with the Natural Language Classifier service" guide line, I meet problem at Stage 2: Create and train a classifier: $ curl -i -u "<username>":"<password>" \ -F training_data=@<path_to_file>/weather_data_train.csv \ -F training_metadata="{\"language\":\"en\",\"name\":\"TutorialClassifier\"}" \ "https://gateway.watsonplatform.net/natural-language-classifier/api/v1/classifiers" It returns: { "code" : 400, "error" : "Data too small", "description" : "The number of

Comparing context variable with entity in IBM Watson Conversation

喜夏-厌秋 提交于 2021-02-10 06:58:50
问题 In watson conversation dialog I have created a condition; something like if $stored_state == @states:(Florida) AND $preferred_joint == @joint:(KFC) then some response where $stored_state is a context variable, which was stored at a previous node from user input. Same goes for $preferred_joint . @states and @joint are just two entities with fuzzy matching. But condition like this never works. I also tried to use @states:(Florida) entity after converting it to a context variable. But still

Watson IoT: “Extensions” entry is not available in left menu

不打扰是莪最后的温柔 提交于 2021-02-05 12:23:43
问题 I've been following the Gather, visualize, analyze and detect anomalies in IoT data tutorial and, although I was able to go through it flawlessly, I'm stuck in the second step of the "Create a data connector to store the historical data" section. In my Watson IoT left menu, there is no entry called "Extensions" , my last option is the "Configuration" one. As far as I know, I have re-checked all the steps twice and I have tried to configure different regions (I'm located in Spain) for both

Watson IoT: “Extensions” entry is not available in left menu

假装没事ソ 提交于 2021-02-05 12:23:22
问题 I've been following the Gather, visualize, analyze and detect anomalies in IoT data tutorial and, although I was able to go through it flawlessly, I'm stuck in the second step of the "Create a data connector to store the historical data" section. In my Watson IoT left menu, there is no entry called "Extensions" , my last option is the "Configuration" one. As far as I know, I have re-checked all the steps twice and I have tried to configure different regions (I'm located in Spain) for both

Does cf push respect the use of .gitignore?

試著忘記壹切 提交于 2021-02-05 05:58:05
问题 I'm using the .gitignore file below with the hope that when I push my application, the tmp directory and swap files will be ignored. That isn't happening though and now I am wondering if cf push even considers .gitignore ? *.swp tmp/ Does anyone know if cf push takes a .gitignore file into consideration? 回答1: The file .cfignore is used for that purpose -- it is not the same as .gitignore , but rather its analogy for the cf tool. The reason for not using them for the same purpose is that you

What's the SQL format for Db2 on IBM Cloud?

℡╲_俬逩灬. 提交于 2021-01-29 17:30:41
问题 I'm using the free version of Db2 on IBM Cloud. I want to use it in Spring Boot application with JDBC driver. But I don't know what's the SQL format for the Db2 on IBM Cloud. The official documents are somewhat clutter. I have googled but can't find a tutorial. I have the following SQL that works with H2 database. I want to translate to Db2 on IBM Cloud's SQL format. I have searched some SQL dialect translators like this one: https://www.jooq.org/translate/ But it seems not work for the IBM