How to Build a Chat Bot Using Azure Bot Service and Train It with LUIS
Introduction
If you haven’t had much programming experience before, building a conversational bot and connecting it to various channels may sound like a difficult task. However, with the Azure Bot Service, Microsoft Language Understanding Intelligent Service (LUIS) and Microsoft Bot Framework, you can finish all the work within a few hours. In this blog post I am going to walk through how to:
· Register a bot in Azure Bot Service
· Train your custom language intelligence application using LUIS
· Design the bot directly in Azure editor
· Connect the Bot to different channels in Microsoft Bot Framework
Setting up the bot in Microsoft Azure:
Microsoft Azure is a cloud computing service that allows you to build, test and publish applications using the Azure portal. The first thing you need to do is to sign in/create a new account in https://azure.microsoft.com/en-us/?v=17.14.
To start building the chat bot, press the green plus button on the top-left corner and choose ‘Bot Service’ under ‘Data + Analysis’:
![]()
Once you fill in the app name and the location, press Create. It might take a while to deploy the bot. Here I named the demo bot ‘mspdemobot’ and chose South-Central US as the location.
![]()
A notification will be sent when deployment succeeds, and you will be greeted with the following screen. To get the App ID and password, simply click on the blue button to register your bot. Here, we choose Nodejs as the language and Language Understanding as the template for the demo bot. After pressing ‘Create Bot’, a window will open to ask you to connect Azure Bot Service to LUIS:
![]()
After everything is set up, you can edit your bot directly in Azure editor. Azure also allows you to integrate with BitBuckey, GitHub and Visual Studio Team Service. You can find tutorials on continuous deployment here: https://docs.microsoft.com/en-us/azure/app-service-web/app-service-continuous-deployment:
![]()
Go to https://www.luis.ai/welcome and sign in using the same account you used previously for Azure Bot Service. You can see that under My Apps section, there is a new application called ‘mspdemobot’:
![]()
Training Your Bot with LUIS:
To build a conversational bot, we want our bot to understand the intentions of the sentences and extract important information. This is where Microsoft Language Understanding Intelligent Service comes in. It reduces the difficulty of building an intelligent bot by allowing us to customize our own language-understanding model in an intuitive way.
To create a new application, click ‘New App’ and fill in the name and culture (from 16 different languages to choose from) of your application. We are going to mainly work on the Intents and Entities in LUIS. Once you click on ‘Intent’, you can create different categories for your custom language understanding model. For example, we can start with the most basic category ‘Greeting’:
![]()
After the intent is created, you will be directed to a page where you can add in a new utterance. In this case, possible new utterances could be ‘Hey’, ‘How are you doing?’, or ‘Hello’ etc.
Sometimes, we need to work on a specific token to continue the conversation, or to complete a certain task. To achieve this, we need to go to the Entities page. There are several prebuilt entities available, such as age, URL, and email address. You can also choose a package of intent and entities for different situations by adding prebuilt domain entities. You can also add in your own custom entities to suit your need. To help your application understand which part of the utterance belongs to which entities, you only need to go back to the utterance page and click on the words you need. In the following screenshot, ‘London’ is selected as location entity in the ‘AskWeather’ intent:
![]()
Now let’s move to the testing part. In Train & Test page you can test specific utterances with your newest model. The right-hand side shows the result produced by current version, which consists of the intent name and the corresponding score. The score is the possibility of the intent that your test utterance belongs to. Using this, you could test some edge case and optimize your model based on the outcome.
![]()
The more utterances you enter, the more accurate the results will be. After you finish testing, publish your LUIS app and you are good to go.
Coding Your Bot:
Once you open the Azure portal and go to the bot service page of your bot, you can code and test your bot directly in Azure editor. In here, we use the ‘intent.matches’ function to let the bot do different things based on users’ intentions. A very simple example is the intent ‘Greeting’, we simply detect user’s intent and reply with a sentence:
![]()
Based on this, we can start coding more complicated things. We are going to code a bot with the ability to understand user’s intentions and start a hangman game when the intent ‘StartGame’, is detected.
To build a hangman bot, you can refer to the blog post by Paul Seal, which explains the process using Nodejs with sample code: http://www.codeshare.co.uk/blog/how-to-create-a-hangman-chat-bot-game-in-nodejs-using-microsoft-bot-framework/.
After the bot is finished you can test it directly in the Azure portal. In my demo bot, I added in more match functions to show that the bot can understand different intentions by connecting to the LUIS API. Here are the screenshots of when different intentions are detected; the bot successfully detects the intentions and classifies ‘London’ as a ‘location’ entity. The developer could design more complicated features by extracting the entities from the argument.
![]()
You could find out how to extract an entity as well as other functions in the reference library: https://docs.botframework.com/en-us/node/builder/chat-reference/modules/_botbuilder_d_.html.
Connecting Your Bot to Different Channel:
You can easily connect your bot to Skype, Messenger, Bing etc. by simply adding them as the channel of your bot. Go to Microsoft Bot Framework and your bot should be connected to Web Chat and Skype by default:
![]()
There are many different channels you can connect your bot to. Once you click on a channel, there will be step by step guide to help you to configure the channel. Simply follow the instructions and most of them should be as easy as copy and paste. The second icon is Cortana, which is an intelligent agent for Windows 10. If you want to provide Cortana with new capabilities using the bot you built, you could refer to this blog post: https://www.robinosborne.co.uk/2017/05/14/building-your-first-botframework-based-cortana-skill/.
How to Build a Chat Bot Using Azure Bot Service and Train It with LUIS的更多相关文章
- [Windows Azure] Building worker role B (email sender) for the Windows Azure Email Service application - 5 of 5.
Building worker role B (email sender) for the Windows Azure Email Service application - 5 of 5. This ...
- [Windows Azure] Building worker role A (email scheduler) for the Windows Azure Email Service application - 4 of 5.
Building worker role A (email scheduler) for the Windows Azure Email Service application - 4 of 5. T ...
- [Windows Azure] Building the web role for the Windows Azure Email Service application - 3 of 5
Building the web role for the Windows Azure Email Service application - 3 of 5. This is the third tu ...
- [Windows Azure] Configuring and Deploying the Windows Azure Email Service application - 2 of 5
Configuring and Deploying the Windows Azure Email Service application - 2 of 5 This is the second tu ...
- 【Azure 机器人】微软Azure Bot 编辑器系列(6) : 添加LUIS,理解自然语言 (The Bot Framework Composer tutorials)
欢迎来到微软机器人编辑器使用教程,从这里开始,创建一个简单的机器人. 在该系列文章中,每一篇都将通过添加更多的功能来构建机器人.当完成教程中的全部内容后,你将成功的创建一个天气机器人(Weather ...
- ASP.NET Core在Azure Kubernetes Service中的部署和管理
目录 ASP.NET Core在Azure Kubernetes Service中的部署和管理 目标 准备工作 注册 Azure 账户 AKS文档 进入Azure门户(控制台) 安装 Azure Cl ...
- 如何将Azure DevOps中的代码发布到Azure App Service中
标题:如何将Azure DevOps中的代码发布到Azure App Service中 作者:Lamond Lu 背景 最近做了几个项目一直在用Azure DevOps和Azure App Servi ...
- Azure App Service(一)利用Azure DevOps Pipeline 构建镜像,部署应用程序
一,引言 起因是前两天项目上做测试,需要我把写好的基于.NET 5 的 Web 测试程序作成 Docker 镜像.当我在本地验证完功能后,准备利用 Docker 构建应用程序镜像的时候,发现系统不支持 ...
- Azure Media Service (1) 使用OBS进行Azure Media Service直播
<Windows Azure Platform 系列文章目录> 今天正好有客户问如何使用OBS进行Azure Media Service直播,我这里简单介绍一下. 先决条件: 1. OBS ...
随机推荐
- mysql查找字段在哪个表中
select table_schema 数据库名称,table_name 表名 from information_schema.columns where column_name = 'compar ...
- CSS代码片段
定位: 将元素居中 将元素水平居中 将元素垂直居中 样式: 文字毛玻璃效果 -------------------------------------------代码----------------- ...
- Chrome 下input的默认样式
一.去除默认边框以及padding border: none;padding:0 二.去除聚焦蓝色边框 outline: none; 三.form表单自动填充变色 1.给input设置内置阴影,至少要 ...
- 跨进程SharedPreferences异常。
诡异的SharedPreferences异常,在ACC之后,SharedPreferences获取不到值了,但是另一个应用可以获取到值.同样的方法,一个正常一个异常. Context c = null ...
- 清清楚楚地搭建MongoDB数据库(以搭建4.0.4版本的副本集为例)
数据的目录文件层次设计 我们一般采用多实例的方式,而不是将所有的数据库尽可能地放在一个实例中. 主要基于以下考虑: 1:不同业务线对应的数据库放在不同的实例上,部分操作的运维时间容易协调等到. 2:相 ...
- 26个ASP.NET常用性能优化方法
数据库访问性能优化 数据库的连接和关闭 访问数据库资源需要创建连接.打开连接和关闭连接几个操作.这些过程需要多次与数据库交换信息以通过身份验证,比较耗费服务器资源. ASP.NET中提供了连接池(Co ...
- 为Arch Linux更换Archlinuxcn源(清华源)
上一篇随笔 archlinux切换官方中国源 里面写了如何切换到官方的中国源,但是因为那个源有一些软件并没有,特别是一些国人常用的中文软件,比如搜狗输入法等这些都是没有的.所以我们现在需要手动切换源一 ...
- 英语口语练习系列-C18-Wildest Dreams
词汇复习 actor 演员 afternoon 下午 alive 活着的 apple 苹果 adjective 形容词 air 空气 animal 动物 April 四月 adult 成年人 airp ...
- (笔记)CTF入门指南
[考项分类] Web: 网页安全 Crypto: 密码学(凯撒密码等) PWN: 对程序逻辑分析 系统漏洞利用 Misc: 杂项 图片隐写 数据还原 脑洞类 信息安全有关的 Reverse: 逆向工程 ...
- Python操作db2
官方文档:https://www.ibm.com/support/knowledgecenter/en/SSEPGG_9.5.0/com.ibm.db2.luw.apdv.python.doc/doc ...