博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Text Style Transfer论文笔记
阅读量:5219 次
发布时间:2019-06-14

本文共 1995 字,大约阅读时间需要 6 分钟。

 

Text Style Transfer主要是指Non-Parallel Data条件下的,具体的paper list见:

 

Delete, Retrieve, Generate: A Simple Approach to Sentiment and Style Transfer (NAACL 2018)

Transforming a sentence to alter a specific attribute while preserving its attribute-independent content.

Training data includes only sentences labeled with their attribute, but not pairs of sentences that differ only in their attributes

Our strongest method extracts content words by deleting phrases associated with the sentence's original attribute value, retrieves new phrases associated with the target attribute, and use a neural model to fluently combine these into a final output.

Training:

For DELETEONLY:

Reconstruct the sentences in the training corpus given their content and original attribute value by maximizing:

For DELETEANDRETRIEVE: apply some noise to a(x, vsrc) to produce a'(x, vsrc)

这篇文章采用Reconstruct的方法来训练模型生成风格化的描述。

 

 

Unsupervised Controllable Text Formalization (AAAI 2019)

The crux of the framework is a deep neural encoder-decoder that is reinforced with text-transformation knowledge through auxiliary modules (called scorers)

 

 

 

 

Style Transformer: Unpaired Text Style Transfer without Disentangled Latent Representation (ACL 2019)

Transfomer Network

To enable style control in the standard Transformer framework, add an extra style embedding as input to the Transformer encoder

z stands for the representation of the encoded inputs

Discriminator Network

Conditional Discriminator: a sentence x and a proposal style s are feed into discriminator and the discriminator is asked to answer whether the input sentence has the corresponding style.

Multi-class Discriminator: only one sentence is feed into the discriminator, and the discriminator aims to answer the style of this sentence.

Learning Algorithm

Discriminator Learning:

conditional discriminator

multi-class discriminator

Transformer Network Learning:

Self Reconstruction

Cycle Reconstruction

Style Controlling

转载于:https://www.cnblogs.com/czhwust/p/10969988.html

你可能感兴趣的文章
Swift - 异步加载各网站的favicon图标,并在单元格中显示
查看>>
Java编程思想总结笔记Chapter 5
查看>>
[LeetCode]662. Maximum Width of Binary Tree判断树的宽度
查看>>
WinForm聊天室
查看>>
【Python学习笔记】1.基础知识
查看>>
梦断代码阅读笔记02
查看>>
selenium学习中遇到的问题
查看>>
大数据学习之一——了解简单概念
查看>>
Linux升级内核教程(CentOS7)
查看>>
Lintcode: Partition Array
查看>>
分享适合个人站长的5类型网站
查看>>
类别的三个作用
查看>>
【SICP练习】85 练习2.57
查看>>
runC爆严重安全漏洞,主机可被攻击!使用容器的快打补丁
查看>>
Maximum Product Subarray
查看>>
solr相关配置翻译
查看>>
通过beego快速创建一个Restful风格API项目及API文档自动化(转)
查看>>
解决DataSnap支持的Tcp长连接数受限的两种方法
查看>>
Synchronous/Asynchronous:任务的同步异步,以及asynchronous callback异步回调
查看>>
ASP.NET MVC5 高级编程-学习日记-第二章 控制器
查看>>