IBM/watson-nao-robot

Name: watson-nao-robot

Owner: International Business Machines

Description: Use a robot to answer queries on financial data by integrating with the IBM Watson Assistant service and IBM Watson Studio

Created: 2017-09-13 14:19:14.0

Updated: 2018-05-17 04:17:52.0

Pushed: 2018-05-17 04:23:49.0

Homepage: https://developer.ibm.com/code/patterns/robotic-calculations-and-inference-agent

Size: 5536

Language: Jupyter Notebook

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Robotic Calculations and Inference Agent

Data Science Experience is now Watson Studio. Although some images in this code pattern may show the service as Data Science Experience, the steps and processes will still work.

Watson Conversation is now Watson Assistant. Although some images in this code pattern may show the service as Watson Conversation, the steps and processes will still work.

There is a technological revolution taking place in the service industry with the introduction of Robots. The Robots are powered by artifical intelligence and are able to perform the roles of a waiter, customer relationship executive, cognitive assistant etc. The capabilties of the robot can be enhanced exponentially by integrating with cloud capabilities.

This code pattern demonstrates a scenario where the robot can answer queries on financial data by integrating with IBM Watson Assistant service and IBM Watson Studio. We will take you through the end to end flow of steps in building an interactive interface between NAO Robot, Watson Assistant API & Watson Studio.

When the reader has completed this code pattern, they will understand how to:

The intended audience for this code pattern are developers who want to develop a complete analytics solution on Watson Studio with a custom web user interface.

  1. The user asks the questions on the dataset to the NAO Robot.
  2. The NAO Robot will convert the speech to text, and will send the text to Node-RED Flow for further processing on the cloud. The results from the processing on the cloud is returned to the NAO Robot through the Node-RED flow.
  3. Node-RED flow sends the converted text to the Watson Assistant API.
  4. The Watson Assistant API takes the text input. The text is analyzed to determine the intent based on the training provided.
  5. The context and state of the conversation is saved to the Cloudant DB to track the conversation flow of the user.
  6. The dataset for analysis is stored in the Object storage.
  7. Data file is taken as input in csv format.
  8. The Jupyter notebook receives the Watson Assistant Service API output from Node-RED using Web Sockets. The notebook processes the data based on the question and generates insights. The insights are sent back to the Node-RED flow using Web Socket.
  9. The Jupyter notebook is powered by Spark.
  10. The Node-RED flow sends the insights to NAO Robot.
Included components
Featured technologies

Watch the Video

Steps

Follow these steps to setup and run this code pattern. The steps are described in detail below.

  1. Sign up for IBM Cloud
  2. Create IBM Cloud services
  3. Configure Watson Assistant Application
  4. View Watson Assistant Intents, Entities and Dialog
  5. Import the Node-RED flow
  6. Note the websocket URL
  7. Sign up for Watson Studio
  8. Create the notebook
  9. Add the data
  10. Update the notebook with service credentials
  11. Run the notebook
  12. Results sent to the Node Red Flow
  13. Update the NAO Robot Choregraphe Behaviour with service credentials and Node-RED URL
  14. Transfer the behaviour to NAO Robot
1. Sign up for IBM Cloud

Sign up for IBM Cloud. By clicking on create a free account you will get 30 days trial account.

2. Create IBM Cloud services

Create the IBM Cloud services by following the link to use the IBM Cloud UI.

Node-RED Starter

Choose an appropriate name for the Node-RED application - App name:. Click on Create.

Watson Speech to Text Service

Choose an appropriate name for the Speech to Text Service - App name:. Click on Create.

Watson Assistant Service

Choose an appropriate name for the Watson Assistant Service - App name:. Click on Create.

3. Configure Watson Assistant Application

Launch the Watson Assistant tool.

4. View Watson Assistant Intents, Entities and Dialog

To view the conversation Intents, Entities and Dialog select the workspace and choose the Intents tab, Entities tab and Dialog tab.

Intents

Intents are purposes or goals expressed in a customer's input, such as answering a question or processing a bill payment. By recognizing the intent expressed in a customer's input, the Watson Assistant service can choose the correct dialog flow for responding to it.

Entities

Entities represent a class of object or a data type that is relevant to a user's purpose. By recognizing the entities that are mentioned in the user's input, the Watson Assistant service can choose the specific actions to take to fulfill an intent.

There are two types of the entities available under the Watson Assistant. One is My entities and another is System entities. Refer below for My Entities.

In this conversation two system entities have been used namely @sys-date and @sys-number. User has to switch on the button before using it.

Dialog

The dialog uses the intents and entities that are identified in the user's input, plus context from the application, to interact with the user and ultimately provide a useful response.

In this conversation, the slots feature under dialog has been used to gather multiple informations from the user. Slots for Max dialog is represented in the above image.

5. Import the Node-RED flow

Deploy the Node-RED flow by clicking on the Deploy button

6. Note the websocket URL

The websocket URL is ws:///ws/Robot_webpage where the NODERED_BASE_URL is the marked portion of the URL in the above image.

Note:

An example websocket URL for a Node-RED app with name myApp - ws://myApp.mybluemix.net/ws/ws-robosocket where myApp.mybluemix.net is the NODERED_BASE_URL. The NODERED_BASE_URL can have an additional region information say eu-gb for UK region and NODERED_BASE_URL could be myApp.eu-gb.mybluemix.net.

7. Sign up for Watson Studio

Sign up for IBM's Watson Studio. By creating a project in Watson Studio a free tier Object Storage service will be created in your IBM Cloud account.

8. Create the notebook

9. Add the data
Add the data to the notebook

Use Find and Add Data (look for the 10/01 icon) and its Files tab. From there you can click browse and add data files from your computer.

Note: The data file in the data directory - Data.csv has been downloaded from https://www.ibm.com/communities/analytics/watson-analytics-blog/retail-sales-marketing-profit-cost/. Change the file name from WA_Retail-SalesMarketing_-ProfitCost.csv to Data.csv before reading it in Watson Studio. There are spaces in the column names which needs to be replaced with “_” before reading the file in Watson Studio. Ex :- Product line has to be Product_line. Please visit the site for the terms and conditions for usage of the data.

10. Update the notebook to read the data as DataFrame

Select the cell below 2. Read the Data & convert it into Dataframe section in the notebook.

Use Find and Add Data (look for the 10/01 icon) and its Files tab. You should see the file names uploaded earlier. Make sure your active cell is the empty one created earlier. Select Insert to code (below your file name). Click Insert pandas DataFrame from drop down menu.

Update the websocket URL in the notebook

In the cell below 7. Expose integration point with a websocket client , update the websocket url noted in section 5 in the start_websocket_listener function.

11. Run the notebook

When a notebook is executed, what is actually happening is that each code cell in the notebook is executed, in order, from top to bottom.

Each code cell is selectable and is preceded by a tag in the left margin. The tag format is In [x]:. Depending on the state of the notebook, the x can be:

There are several ways to execute the code cells in your notebook:

12. Results Sent To The Node-Red Flow

The results from Watson Studio are sent to Node-RED flow which is relayed to NAO Robot.

The sample response for the question is given below.

  **User**: What is the highest profit of Capri Italy in 2007?

  **NAO response**: The highest profit of Capri Italy in 2007 is 310000.
13. Update the NAO Robot Choregraphe Behaviour with service credentials and Node-RED URL

Open the NAO robot project (WatsonNaoRobot.pml) file under choregraphe/watson_nao_robot folder with the Choregraphe. Connect to the NAO robot using the Connection/Connect to menu from Choregraphe.

Update Watson Speech to Text credentials in the Behavior

Update Node-RED URL in the Behaviour

14. Transfer the behaviour to NAO Robot

Save the changes to the NAO robot project (WatsonNaoRobot.pml).

Troubleshooting

See DEBUGGING.md.

License

Apache 2.0


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.