Showing posts fromWatson

Bringing Watson Knowledge Studio to Bluemix

  • 29 Sep, 2017

If you have used Watson Knowledge Studio (WKS) before, you would know that it is a powerful application to teach Watson how to interpret specific terms in unstructured text using annotation models. Available since July 2016, WKS we are using WKS on several projetcts. More information on this link(https://www.ibm.com/blogs/bluemix/2017/09/bringing-watson-knowledge-studio-bluemix/)

Bringing Watson Knowledge Studio to BluemixRead More

Setup Error on MAC - Watson Python SDK

  • 19 Apr, 2018

Today i got the following error when i install watson python sdk on my MAC: I use the command :  sudo pip install watson-developer-cloud The exception was: Traceback (most recent call last): File "/Library/Python/2.7/site-packages/pip/basecommand.py", line 215, in main status = self.run(options, args) File "/Library/Python/2.7/site-packages/pip/commands/install.py", line 342, in run prefix=options.prefix\path, File "/Library/Python/2.7/site-packages/pip/req/req\set.py", line 778, in install requirement.uninstall(auto\confirm=True) File "/Library/Python/2.7/site-packages/pip/req/req\install.py", line 754, in uninstall paths\to\remove.remove(auto\confirm) File "/Library/Python/2.7/site-packa

Setup Error on MAC - Watson Python SDKRead More

IBM Watson Tutorials

  • 03 Jan, 2020

I found today this link https://ibmcloud-watson-day.mybluemix.net/. There are several tutorials about IBM Watson API's

IBM Watson TutorialsRead More

IBM will begin sunsetting IBM Watson Personality Insights

  • 02 Dec, 2020

IBM will begin sunsetting IBM Watson™ Personality Insights on 1 December 2020. For a period of one year from this date, you will still be able to use Personality Insights. However, as of 1 December 2021, the offering will no longer be available. As an alternative, we encourage you to consider migrating to IBM Watson™ Natural Language Understanding, a service on IBM Cloud that uses deep learning to extract data and insights from text such as keywords, categories, sentiment, emotion, and syntax to provide insights for your business or industry. More information on this link(https://cloud.ibm.com/docs/personality-insights?topic=personality-insights-release-notes)

IBM will begin sunsetting IBM Watson Personality InsightsRead More

Running my ChatBot application inside Docker Liberty profile container

  • 23 May, 2017

I used the steps bellow to run my chatbot servlet application inside of a Docker container. 1 - Download WAS Liberty Docker image: docker pull websphere-liberty 2 - Create a Docker file with the following lines FROM websphere-liberty ADD ChatBot.war /opt/ibm/wlp/usr/servers/defaultServer/dropins/ ADD server.xml /opt/ibm/wlp/usr/servers/defaultServer/ ENV LICENSE accept ChatBot.war is my chatbot application. To add features and configuration for your server you need to update the server.xml. Do not forget to put host="" on httpEndpoint or you will not access the server from your browser. The server.xml is listed below javaee-7.0 localConnector-1.0 distributedMap-1.0 webCache-1.0

Running my ChatBot application inside Docker Liberty profile containerRead More

Setup NLQ (Natural Language Querying) on Watson Explorer 11.0.2

  • 27 Oct, 2017

Watson™ Explorer Natural Language Querying (NLQ) improves the user search experience by allowing the user to query Watson Explorer using natural language queries such as questions. This is accomplished through the use of two components: Query Modifier, which modifies user queries before they are executed, and Ontolection Trainer, which provides machine learning tools that can generate ontolections for use in query expansion. The setup process is not hard you can follow the instructions here(https://www.ibm.com/support/knowledgecenter/SS8NLW11.0.2/com.ibm.watson.wex.fc.nlq.doc/cwexnlqinstallingqm.html). But how to use it? If you are using the REST API you must add this to your query: &qu

Setup NLQ (Natural Language Querying) on Watson Explorer 11.0.2Read More

Setup Watson Explorer 11.0.2 and Analytical Components on Centos 7

  • 15 Sep, 2017

I am using Centos for all IBM Software i work with.   Domino, WebSphere Portal, DB2, ITDS to name a few. The last software was Watson Explorer Enterprise and Advanced. I know Centos is not supported by IBM but it works During the setup of analytical components version 11.0.2 the installer was not working with and the error message is bellow: Unpacking the JRE... Extracting the installation resources from the installer archive... Configuring the installer for this system's environment... Launching installer... JRE libraries are missing or not compatible.... Exiting.... I search for a solution and IBM has a technote about the problem on version 11.0.0. To solve just install the 32 bit libr

Setup Watson Explorer 11.0.2 and Analytical Components on Centos 7Read More

SSL Handshake error when connect to Watson API's

  • 01 Feb, 2018

I start a new java project on eclipse using the SDK for Watson. When i try to connect on any watson service i got the error: CWPKI0022E: SSL HANDSHAKE FAILURE: A signer with SubjectDN CN=.watsonplatform.net, O=International Business Machines Corporation, L=Armonk, ST=New York, C=US was sent from the target host This error means, that the local Liberty trust store does not have the correct signer certificate from the remote WATSON website where you tries to connect to. It's a certificate error. To solve the problem on my MAC i just do the following: 1 - Download the cetificate. The easy way i found was: openssl s\client -host https://gateway.watsonplatform.net -port 443 -prexit -showcert

SSL Handshake error when connect to Watson API'sRead More