原始文档

Train an end-to-end model

To get started we can train a very simple model using Ludwig (feel free to use

your favourite deep learning framework here):


input_features:
-
name: user
type: text
level: word
encoder: rnn
cell_type: lstm
reduce_output: null output_features:
-
name: system
type: text
level: word
decoder: generator
cell_type: lstm
attention: bahdanau training:
epochs: 100

You can modify this config to reflect the architecture of your choice and train

using Ludwig:

ludwig train \
--data_csv data/metalwoz.csv \
--model_definition_file plato/example/config/ludwig/metalWOZ_seq2seq_ludwig.yaml \
--output_directory "models/joint_models/"

我的笔记

训练端到端模型:

  • 输入文件是 metalwoz.csvmetalWOZ_seq2seq_ludwig.yaml
  • 输出文件是 models/joint_models/

注意模型训练完毕,加载模型文件(使用模型)的时候,还需要(1)写一个类文件,实现plato提供的接口;(2)写一个yaml配置文件,用--config 参数 来告诉plato run 加载的模型的路径。

先准备数据,然后训练模型。

csv文件需要解析得到。

1. 下载metalwoz数据集

https://www.microsoft.com/en-us/research/project/metalwoz/

2. 解压数据

  • 以shoping为例. 901个对话,2个角色

解压之后得到:

/Users/huihui/data/metalwoz-v1/dialogues/SHOPPING.txt

文件内容举例:

{"id": "47d85004", "user_id": "891cf0fb", "bot_id": "0f9f7619", "domain": "SHOPPING", "task_id": "5e456a4d", "turns": ["Hello how may I help you?", "i want to order a mattress from walmart", "Great. I can help you with your mattress order.", "how long will it take to arrive", "From the time of purchase it will take three days for us to ship it.", "great, lets start the order", "Once we have shipped it however, we dont know when it will arrive at your location", "how can i find out an exact date for it to arrive", "We ship priority mail through USPS. The length of time will vary with depending on the carrier", "well then i will try somewhere else, thank you anyway", "I am sorry we were not able to accommodate you"]}

3. 将txt文件转化为csv文件

  • 3.1 准备yaml文件

编写文件

plato/example/config/parser/Parse_MetalWOZ.yaml

---

package: plato.utilities.parser.parse_metal_woz
class: Parser
arguments:
data_path: /Users/huihui/data/metalwoz-v1/dialogues/SHOPPING.txt
  • 3.2 使用脚本执行转换
plato parse --config Parse_MetalWOZ.yaml

解析之后的文件在data/metalwoz.csv

  • 注意:只有2个角色。不是多角色会话
user,system
hi,How can I help you today. I am a bot.
Can you help me order on an online shop,"Sure, I would love to help you. What is it you would like to order?"
I like to order bicycle helmet,Which brand helmet would you like to purchase.
yoni,"OK, what size helmet would you like to order."
small,"OK. I found a Yoni bicycle helmet in size small. It comes in black, red, blue or white. Which color would you like to order?"
black,The cost is $39.99. Would you like to go ahead and place an order?
ok pls,Great. Your order has been placed.
thank you,You are quite welcome. Have a great day!
hi,Hello how may I help you?

至此,csv文件准备完毕

4. 准备model_definition_file文件

官方文档给了例子,

plato/example/config/ludwig/metalWOZ_seq2seq_ludwig.yaml

---

input_features:
-
name: user
type: text
level: word
encoder: rnn
cell_type: lstm
reduce_output: null output_features:
-
name: system
type: text
level: word
decoder: generator
cell_type: lstm
attention: bahdanau training:
epochs: 100

5. 开始训练模型

ludwig train \
--data_csv data/metalwoz.csv \
--model_definition_file plato/example/config/ludwig/metalWOZ_seq2seq_ludwig.yaml \
--output_directory "models/joint_models/"

一共训练100轮

不等训练完毕

6. 写类文件,加载模型

Write a class inheriting from Conversational Module that loads and queries the model

This class simply needs to handle loading of the model, querying it

appropriately and formatting its output appropriately. In our case, we need to

wrap the input text into a pandas dataframe, grab the predicted tokens from

the output and join them in a string that will be returned. See the class here:

plato.agent.component.joint_model.metal_woz_seq2seq.py

package: plato.agent.component.joint_model.metal_woz_seq2seq
class: MetalWOZSeq2Seq

文件:

plato/agent/component/joint_model/metal_woz_seq2seq.py

"""
MetalWOZ is an MetalWOZ class that defines an interface to Ludwig models.
""" class MetalWOZSeq2Seq(ConversationalModule):
……

7. 运行Agent

Write a Plato generic yaml config and run your agent!

See plato/example/config/application/metalwoz_generic.yaml for an example generic

configuration file that interacts with the seq2seq agent over text. You can try

it out as follows:

plato run --config metalwoz_text.yaml

plato/example/config/application/metalwoz_text.yaml

8. 测试结果

Dialogue 1 (out of 10)

USER > I want to buy a bicycle
(DEBUG) system> what is the helmet ?
USER > yoni
(DEBUG) system> what size ?
USER > small
……

2020-02-21 15:57:20 效果不好

模型没有训练好?

再继续训练看看

总结上面的流程

学习笔记(22)- plato-训练端到端的模型的更多相关文章

  1. Ext.Net学习笔记22:Ext.Net Tree 用法详解

    Ext.Net学习笔记22:Ext.Net Tree 用法详解 上面的图片是一个简单的树,使用Ext.Net来创建这样的树结构非常简单,代码如下: <ext:TreePanel runat=&q ...

  2. SQL反模式学习笔记22 伪键洁癖,整理数据

    目标:整理数据,使不连续的主键Id数据记录变的连续. 反模式:填充断档的数据空缺. 1.不按照顺序分配编号 在插入新行时,通过遍历表,找到的第一个未分配的主键编号分配给新行,来代替原来自动分配的伪主键 ...

  3. Caffe学习笔记(一):Caffe架构及其模型解析

    Caffe学习笔记(一):Caffe架构及其模型解析 写在前面:关于caffe平台如何快速搭建以及如何在caffe上进行训练与预测,请参见前面的文章<caffe平台快速搭建:caffe+wind ...

  4. 学习笔记(26)- plato-端到端模型-定闹钟

    今天用了定闹钟的场景语料,在plato框架尝试了端到端的模型. 本文先记录英文的训练过程,然后记录中文的训练过程. 训练端到端的模型 发现使用英文的模型,还是显示有中文,所以,新建目录,重新训练 1. ...

  5. Netty4 学习笔记之二:客户端与服务端心跳 demo

    前言 在上一篇Netty demo 中,了解了Netty中的客户端和服务端之间的通信.这篇则介绍Netty中的心跳. 之前在Mina 中心跳的使用是通过继承 KeepAliveMessageFacto ...

  6. TensorFlow学习笔记——LeNet-5(训练自己的数据集)

    在之前的TensorFlow学习笔记——图像识别与卷积神经网络(链接:请点击我)中了解了一下经典的卷积神经网络模型LeNet模型.那其实之前学习了别人的代码实现了LeNet网络对MNIST数据集的训练 ...

  7. Hadoop学习笔记—22.Hadoop2.x环境搭建与配置

    自从2015年花了2个多月时间把Hadoop1.x的学习教程学习了一遍,对Hadoop这个神奇的小象有了一个初步的了解,还对每次学习的内容进行了总结,也形成了我的一个博文系列<Hadoop学习笔 ...

  8. [原创]java WEB学习笔记22:MVC案例完整实践(part 3)---多个请求对应一个Servlet解析

    本博客为原创:综合 尚硅谷(http://www.atguigu.com)的系统教程(深表感谢)和 网络上的现有资源(博客,文档,图书等),资源的出处我会标明 本博客的目的:①总结自己的学习过程,相当 ...

  9. ‎Cocos2d-x 学习笔记(22) TableView

    [Cocos2d-x 学习笔记 ]目录 1. 简介 TableView直接继承了ScrollView和ScrollViewDelegate.说明TableView能实现ScrollView拖动cont ...

  10. [Firefly引擎][学习笔记二][已完结]卡牌游戏开发模型的设计

    源地址:http://bbs.9miao.com/thread-44603-1-1.html 在此补充一下Socket的验证机制:socket登陆验证.会采用session会话超时的机制做心跳接口验证 ...

随机推荐

  1. [Codechef SSTORY] A Story with Strings - 后缀数组,二分

    [Codechef SSTORY] A Story with Strings Description 给定两个字符串,求它们的最长公共子串.如果解不唯一,输出最先在第二个字符串中出现的那个. Solu ...

  2. flask入门(二)

    接着上文 讲一讲响应 flask调用视图函数后,会将其返回值作为响应的内容.大多数情况下,响应就是一个简单的字符串,作为HTML页面回送客户端.但HTTP协议需要的不仅是作为请求响应的字符串.HTTP ...

  3. Hibernate的基本工作原理

    Hibernate开发过程中会用到5个核心接口: 1.Configuration2.SessionFactory3.Session4.Transaction5.QueryHibernate就是通过这些 ...

  4. 小tips:使用vue-cli脚手架搭建项目,关于eslint语法检测配置

    配置文件在项目根目录里,文件名以 .eslintrc.* 为名. 为了兼容以前写的代码,避免修改太多代码,把不符合自己习惯的规则去掉,简单配置代码: module.exports = { root: ...

  5. pybind11简介

    python调用C/C++有不少的方法,如boost.python, swig, ctypes, pybind11等,这些方法有繁有简,而pybind11的优点是对C++ 11支持很好,API比较简单 ...

  6. Jquery实现点击当前radio button设置选中属性,其它设置非选中属性

    一.HTML代码: <div class="ques-tc-r" id="question_type"> <ul class="cl ...

  7. JavaScript可视化运行工具推荐

    事件循环.执行栈和任务队列可视化 这个宏任务.微任务,自带例子,也可以自己编辑,不过超过5s的例子就不行 JavaScript Visualizer Tyler Mcginnis大佬的Advanced ...

  8. 将java字节自动转为"B", "KB", "MB", "GB", "TB"等

    //字节转换 public static String readableFileSize(long size) { if (size <= 0) return "0"; fi ...

  9. 线程池(ExecutorService)初体验

    背景:查询月统计数据,因为查询日统计数据功能已经实现.月统计数据,只是参一个List(date) 参数,for循环调用日统计,然后把结果整合就OK. 问题:单线程跑  太耗时间 解决方案:使用多线程, ...

  10. springboot项目入门解析

                     config:主要用来存储配置文件,以及其他不怎么动用的信息. controller:项目的主要控制文件 dao:           主要用来操作数据库 entit ...