Learning Structured Representation for Text Classification via Reinforcement Learning 学习笔记
Representation learning : 表征学习,端到端的学习
pre-specified 预先指定的
demonstrate 论证;证明,证实;显示,展示;演示,说明
attempt vt.尝试;试图 n. 进攻;尝试,冲击
distilled adj.由蒸馏得来的 v.蒸馏( distil的过去式和过去分词 );从…提取精华
relevant adj.有关的,中肯的;相关联的;确切的;有重大意义[作用]的,实质性的
phrase structures 短语结构
formulated 构想出( formulate的过去式和过去分词 );规划;确切地阐述;用公式表示
Longevity n.长寿;寿命;长期供职
a sequential decision problem 顺序决策问题 http://teaching.csse.uwa.edu.au/units/CITS4211/Lectures/wk6.pdf
utility 公用事业;功用,效用;有用的物体或器械;公用事业公司
deterministic 确定性的
explicit adj. 明确的,清楚的;直言的;详述的;不隐瞒的
annotation 注释
inference 推理;推断;推论
tree-structured LSTM https://zhuanlan.zhihu.com/p/36608614
recursive autoencoders 递归自动编码器
implicit 隐性的
integrated seamlessly 无缝集成
facilitate 促进
methodology 方法论
argue vt. 坚决主张;提出理由证明;说服,劝告;表明,证明 vi. 争论,辩论;提出理由
stochastic 随机的
sampling 抽样
interleaved 交错的
derived 衍生的
perceive v.理解;意识到;察觉,发觉
sensor 传感器
effector n.传感器,灵敏元件
solidity n.固性;硬度;可靠性;固态
Rational adj. 理性的;合理的;理智的;神智清楚的 n.合理的事物;[数]有理数;懂道理的人,人类;〈英〉合理的服装
percept 知觉
superior 优越
to be precise 确切地说
irrelevant 无关的
purified 纯化的
condensed 浓缩
preceding 前面的
logarithm 对数
proportion 比例
interpreted v. 理解;解释( interpret的过去式和过去分词 );把…理解为;演绎(按自己的感觉演奏音乐或表现角色)
interleaved 交错的
convergence n.集中,收敛( convergence的名词复数 );集合;[气]辐合
heuristics n.启发(法),探索法
brake n.刹车;制动器,闸;阻碍 vt.& vi.刹(车)
emit vt.发出;发射;颁布;发表
Learning Structured Representation for Text Classification via Reinforcement Learning 学习笔记的更多相关文章
- 《Learning Structured Representation for Text Classification via Reinforcement Learning》论文翻译.md
摘要 表征学习是自然语言处理中的一个基本问题.本文研究了如何学习文本分类的结构化表示.与大多数既不使用结构又依赖于预先指定结构的现有表示模型不同,我们提出了一种强化学习(RL)方法,通过自动覆盖优化结 ...
- 论文笔记:Learning how to Active Learn: A Deep Reinforcement Learning Approach
Learning how to Active Learn: A Deep Reinforcement Learning Approach 2018-03-11 12:56:04 1. Introduc ...
- cocos代码研究(21)Widget子类Text,TextAtlas,TextBMFont学习笔记
理论基础 Text类又称ttf格式文本,可以用ttf文件或者系统自带字体,支持文字多,但是ttf文件格式体积大,渲染速度慢: TextBMFont类又称fnt格式文本,纹理创建,根据纹理上有的文字来显 ...
- Deep Image Retrieval: Learning global representations for image search In ECCV, 2016学习笔记
- 论文地址:https://arxiv.org/abs/1604.01325 contribution is twofold: (i) we leverage a ranking framework ...
- 论文列表——text classification
https://blog.csdn.net/BitCs_zt/article/details/82938086 列出自己阅读的text classification论文的列表,以后有时间再整理相应的笔 ...
- (zhuan) Deep Reinforcement Learning Papers
Deep Reinforcement Learning Papers A list of recent papers regarding deep reinforcement learning. Th ...
- 论文笔记之:Active Object Localization with Deep Reinforcement Learning
Active Object Localization with Deep Reinforcement Learning ICCV 2015 最近Deep Reinforcement Learning算 ...
- [DQN] What is Deep Reinforcement Learning
已经成为DL中专门的一派,高大上的样子 Intro: MIT 6.S191 Lecture 6: Deep Reinforcement Learning Course: CS 294: Deep Re ...
- Learning Roadmap of Deep Reinforcement Learning
1. 知乎上关于DQN入门的系列文章 1.1 DQN 从入门到放弃 DQN 从入门到放弃1 DQN与增强学习 DQN 从入门到放弃2 增强学习与MDP DQN 从入门到放弃3 价值函数与Bellman ...
随机推荐
- Oracle根据时间恢复已删除提交的数据
Oracle 根据数据库的时间戳恢复已删除提交的数据 1.选择一个时间点查看表中数据是否是自己想要的数据 Select * from 表名 as of timestamp to_timestamp(‘ ...
- cocos2dx 实现gpu instancing
所有的gpu instancing都是在unity3d上实现的,ue4实现起来应该压力也不大相关链接见下:https://www.cnblogs.com/hont/p/7143626.htmlhttp ...
- Java 自增原理
很多人都知道 i++ 和 ++i 的区别 a = i++: a = i; i = i+1; a = ++ i; i = i + 1; a = i; 但碰到 i = i ++;的时候很多人就懵了? i是 ...
- [NOIP2014D1]
T1 Problem 洛谷 Solution 一道非常裸的模拟题.直接枚举每次猜拳就可以了. Code #include<cmath> #include<cstdio> #in ...
- 【tomcat环境搭建】Linux和Windows下tomcat开机自启动设置
目前很多项目都部署在tomcat上,频繁操作中,每次启动或关闭tomcat都稍显麻烦,那如何设置tomcat的开机自启动? Linux下tomcat的开机自启动设置 网上主要有两种方式,一种是shel ...
- 5 第一个Django第4部分(表单和通用视图)
上一节完成了视图编写,这一节为应用添加投票功能,也就是表单提交. 5.1编写一个简单的表单 5.2使用通用视图 5.3改良视图 5.1编写一个简单的表单 在网页设计中添加Form元素 polls/te ...
- vsftp在iptables中的配置
在 /etc/vsftpd/vsftpd.conf 文件末添加以下几行 pasv_enable=YESpasv_min_port=20000pasv_max_port=20010 在 iptables ...
- c++错误
run-time check failure #2-stack around the variable 'c' was corrupted错误产生的原因大多是因为程序定义了数组,存在数组越界.解决办法 ...
- Apache配置对外访问默认路径(域名默认访问路径)
摘抄.同以下博主遇到同样问题,故此记录. 作者:ChasingdreamLY 原文:https://blog.csdn.net/qq_26591517/article/details/80414073 ...
- Spine用于Timeline(NullReferenceException: Object reference not set to an instance of an object pine.Unity.Editor.AnimationReferenceAssetEditor.OnInspectorGUI ())
报错信息:Spine.Unity.Editor.AnimationReferenceAssetEditor.OnInspectorGUI () (at Assets/Extention/Spine/E ...