/deep-qa

Question and Answering Model with TensorFlow

Primary LanguagePythonApache License 2.0Apache-2.0

Note, this repo is deprecated.

If you are interested in further enhancements and investigations, just watch Next repo.

https://github.com/Samurais/Neural_Conversation_Models

自然语言处理推荐入门&工具书

本书由 deep-qa 作者参与著作。

快速购书链接

《智能问答与深度学习》 这本书是服务于准备入门机器学习和自然语言处理的学生和软件工程师的,在理论上介绍了很多原理、算法,同时也提供很多示例程序增加实践性,这些程序被汇总到示例程序代码库,这些程序主要是帮助大家理解原理和算法的,欢迎大家下载和执行。代码库的地址是:

https://github.com/l11x0m7/book-of-qna-code

Approaching a Chatbot Service

Join the chat at https://gitter.im/chatbot-pilots/DeepQA Docker Pulls Docker Stars Docker Layers

chatoper banner

Part 1: Introduction

Part 2: Bot Engine

Part 3: Bot Model

This repository is align with Part 3: Bot Model.

Train and serve QA Model with TensorFlow

Tested with TensorFlow#0.11.0rc2, Python#3.5.

Install Nvidia Drivers, CUDNn, Python, TensorFlow on Ubuntu 16.04

DeepQA

Inspired and inherited from DeepQA.

Install deps

pip install -r requirements.txt

Install TensorFlow

export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow-0.11.0rc2-cp35-cp35m-linux_x86_64.whl
pip install —-upgrade $TF_BINARY_URL

Pre-process data

Process data, build vocabulary, word embedding, conversations, etc.

cp config.sample.ini config.ini
python deepqa2/dataset/preprocesser.py

Sample Corpus http://www.cs.cornell.edu/~cristian/Cornell_Movie-Dialogs_Corpus.html

Train Model

Train language model with Seq2seq.

cp config.sample.ini config.ini # modify keys
python deepqa2/train.py

Serve Model

Provide RESt API to access language model.

cd DeepQA2/save/deeplearning.cobra.vulcan.20170127.175256/deepqa2/serve
cp db.sample.sqlite3 db.sqlite3 
python manage.py runserver 0.0.0.0:8000

Access Service with RESt API

POST /api/v1/question HTTP/1.1
Host: 127.0.0.1:8000
Content-Type: application/json
Authorization: Basic YWRtaW46cGFzc3dvcmQxMjM=
Cache-Control: no-cache

{"message": "good to know"}

response
{
  "rc": 0,
  "msg": "hello"
}

Train with Docker

Install

Train

docker pull samurais/deepqa2:latest
cd DeepQA2
./scripts/train_with_docker.sh

Chatopera 云服务

https://bot.chatopera.com/

Chatopera 云服务是一站式实现聊天机器人的云服务,按接口调用次数计费。Chatopera 云服务是 Chatopera 机器人平台的软件即服务实例。在云计算基础上,Chatopera 云服务属于聊天机器人即服务的云服务。

Chatopera 机器人平台包括知识库、多轮对话、意图识别和语音识别等组件,标准化聊天机器人开发,支持企业 OA 智能问答、HR 智能问答、智能客服和网络营销等场景。企业 IT 部门、业务部门借助 Chatopera 云服务快速让聊天机器人上线!

展开查看 Chatopera 云服务的产品截图

自定义词典

自定义词条

创建意图

添加说法和槽位

训练模型

测试对话

机器人画像

系统集成

聊天历史

立即使用