├── .gitignore ├── LICENSE ├── README.md └── bib_citation ├── GANs_methods.bib ├── Knowledge_methods.bib ├── RL_methods.bib ├── Style_transfer.bib ├── VAE_methods.bib ├── related_papers.bib └── seq2seq_methods.bib /.gitignore: -------------------------------------------------------------------------------- 1 | ## Core latex/pdflatex auxiliary files: 2 | *.aux 3 | *.lof 4 | *.log 5 | *.lot 6 | *.fls 7 | *.out 8 | *.toc 9 | *.fmt 10 | *.fot 11 | *.cb 12 | *.cb2 13 | .*.lb 14 | 15 | ## Intermediate documents: 16 | *.dvi 17 | *.xdv 18 | *-converted-to.* 19 | # these rules might exclude image files for figures etc. 20 | # *.ps 21 | # *.eps 22 | # *.pdf 23 | 24 | ## Generated if empty string is given at "Please type another file name for output:" 25 | .pdf 26 | 27 | ## Bibliography auxiliary files (bibtex/biblatex/biber): 28 | *.bbl 29 | *.bcf 30 | *.blg 31 | *-blx.aux 32 | *-blx.bib 33 | *.run.xml 34 | 35 | ## Build tool auxiliary files: 36 | *.fdb_latexmk 37 | *.synctex 38 | *.synctex(busy) 39 | *.synctex.gz 40 | *.synctex.gz(busy) 41 | *.pdfsync 42 | 43 | ## Build tool directories for auxiliary files 44 | # latexrun 45 | latex.out/ 46 | 47 | ## Auxiliary and intermediate files from other packages: 48 | # algorithms 49 | *.alg 50 | *.loa 51 | 52 | # achemso 53 | acs-*.bib 54 | 55 | # amsthm 56 | *.thm 57 | 58 | # beamer 59 | *.nav 60 | *.pre 61 | *.snm 62 | *.vrb 63 | 64 | # changes 65 | *.soc 66 | 67 | # comment 68 | *.cut 69 | 70 | # cprotect 71 | *.cpt 72 | 73 | # elsarticle (documentclass of Elsevier journals) 74 | *.spl 75 | 76 | # endnotes 77 | *.ent 78 | 79 | # fixme 80 | *.lox 81 | 82 | # feynmf/feynmp 83 | *.mf 84 | *.mp 85 | *.t[1-9] 86 | *.t[1-9][0-9] 87 | *.tfm 88 | 89 | #(r)(e)ledmac/(r)(e)ledpar 90 | *.end 91 | *.?end 92 | *.[1-9] 93 | *.[1-9][0-9] 94 | *.[1-9][0-9][0-9] 95 | *.[1-9]R 96 | *.[1-9][0-9]R 97 | *.[1-9][0-9][0-9]R 98 | *.eledsec[1-9] 99 | *.eledsec[1-9]R 100 | *.eledsec[1-9][0-9] 101 | *.eledsec[1-9][0-9]R 102 | *.eledsec[1-9][0-9][0-9] 103 | *.eledsec[1-9][0-9][0-9]R 104 | 105 | # glossaries 106 | *.acn 107 | *.acr 108 | *.glg 109 | *.glo 110 | *.gls 111 | *.glsdefs 112 | *.lzo 113 | *.lzs 114 | 115 | # uncomment this for glossaries-extra (will ignore makeindex's style files!) 116 | # *.ist 117 | 118 | # gnuplottex 119 | *-gnuplottex-* 120 | 121 | # gregoriotex 122 | *.gaux 123 | *.gtex 124 | 125 | # htlatex 126 | *.4ct 127 | *.4tc 128 | *.idv 129 | *.lg 130 | *.trc 131 | *.xref 132 | 133 | # hyperref 134 | *.brf 135 | 136 | # knitr 137 | *-concordance.tex 138 | # TODO Comment the next line if you want to keep your tikz graphics files 139 | *.tikz 140 | *-tikzDictionary 141 | 142 | # listings 143 | *.lol 144 | 145 | # luatexja-ruby 146 | *.ltjruby 147 | 148 | # makeidx 149 | *.idx 150 | *.ilg 151 | *.ind 152 | 153 | # minitoc 154 | *.maf 155 | *.mlf 156 | *.mlt 157 | *.mtc[0-9]* 158 | *.slf[0-9]* 159 | *.slt[0-9]* 160 | *.stc[0-9]* 161 | 162 | # minted 163 | _minted* 164 | *.pyg 165 | 166 | # morewrites 167 | *.mw 168 | 169 | # nomencl 170 | *.nlg 171 | *.nlo 172 | *.nls 173 | 174 | # pax 175 | *.pax 176 | 177 | # pdfpcnotes 178 | *.pdfpc 179 | 180 | # sagetex 181 | *.sagetex.sage 182 | *.sagetex.py 183 | *.sagetex.scmd 184 | 185 | # scrwfile 186 | *.wrt 187 | 188 | # sympy 189 | *.sout 190 | *.sympy 191 | sympy-plots-for-*.tex/ 192 | 193 | # pdfcomment 194 | *.upa 195 | *.upb 196 | 197 | # pythontex 198 | *.pytxcode 199 | pythontex-files-*/ 200 | 201 | # tcolorbox 202 | *.listing 203 | 204 | # thmtools 205 | *.loe 206 | 207 | # TikZ & PGF 208 | *.dpth 209 | *.md5 210 | *.auxlock 211 | 212 | # todonotes 213 | *.tdo 214 | 215 | # vhistory 216 | *.hst 217 | *.ver 218 | 219 | # easy-todo 220 | *.lod 221 | 222 | # xcolor 223 | *.xcp 224 | 225 | # xmpincl 226 | *.xmpi 227 | 228 | # xindy 229 | *.xdy 230 | 231 | # xypic precompiled matrices and outlines 232 | *.xyc 233 | *.xyd 234 | 235 | # endfloat 236 | *.ttt 237 | *.fff 238 | 239 | # Latexian 240 | TSWLatexianTemp* 241 | 242 | ## Editors: 243 | # WinEdt 244 | *.bak 245 | *.sav 246 | 247 | # Texpad 248 | .texpadtmp 249 | 250 | # LyX 251 | *.lyx~ 252 | 253 | # Kile 254 | *.backup 255 | 256 | # gummi 257 | .*.swp 258 | 259 | # KBibTeX 260 | *~[0-9]* 261 | 262 | # auto folder when using emacs and auctex 263 | ./auto/* 264 | *.el 265 | 266 | # expex forward references with \gathertags 267 | *-tags.tex 268 | 269 | # standalone packages 270 | *.sta 271 | 272 | # Makeindex log files 273 | *.lpz 274 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | BSD 3-Clause License 2 | 3 | Copyright (c) 2019, THUNLP-MT 4 | All rights reserved. 5 | 6 | Redistribution and use in source and binary forms, with or without 7 | modification, are permitted provided that the following conditions are met: 8 | 9 | * Redistributions of source code must retain the above copyright notice, this 10 | list of conditions and the following disclaimer. 11 | 12 | * Redistributions in binary form must reproduce the above copyright notice, 13 | this list of conditions and the following disclaimer in the documentation 14 | and/or other materials provided with the distribution. 15 | 16 | * Neither the name of the copyright holder nor the names of its 17 | contributors may be used to endorse or promote products derived from 18 | this software without specific prior written permission. 19 | 20 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 23 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 24 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 25 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 26 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 27 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 28 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 29 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Text Generation Reading List 2 | This is a text generation reading list maintained by the Tsinghua Natural Language Processing Group. 3 | 4 | We will keep adding papers and improving the list. Any suggestions are welcome! 5 | 6 | * [Datasets](#datasets) 7 | * [Story Generation](#story_generation) 8 | * [Text Generation](#text_generation) 9 | * [Tools](#tools) 10 | * [Papers](#papers) 11 | * [Related Papers](#prepare_papers) 12 | * [Seq2Seq Based Methods](#seq2seq_based) 13 | * [Variational Autoencoder Based Methods](#vae_based) 14 | * [Generative Adversarial Nets Based Methods](#gan_based) 15 | * [Reinforcement Learning Based Methods](#rl_based) 16 | * [Knowledge Based Methods](#kbs_based) 17 | * [Style Transfer](#style_transfer) 18 | 19 |

Datasets

20 | 21 |

Story Generation

22 | 23 | * [ROCStories](http://cs.rochester.edu/nlp/rocstories/): Mostafazadeh, Nasrin and Chambers, Nathanael and He, Xiaodong and Parikh, Devi and Batra, Dhruv and Vanderwende, Lucy and Kohli, Pushmeet and Allen, James. 2016. [A Corpus and Evaluation Framework for Deeper Understanding of Commonsense Stories](https://www.aclweb.org/anthology/N16-1098). In *Proceedings of NAACL-HLT 2016*. 24 | * [VIST](http://visionandlanguage.net/VIST/): Huang, Ting-Hao (Kenneth) and Ferraro, Francis and Mostafazadeh, Nasrin and Misra, Ishan and Agrawal, Aishwarya and Devlin, Jacob and Girshick, Ross and He, Xiaodong and Kohli, Pushmeet and Batra, Dhruv and Zitnick, C. Lawrence and Parikh, Devi and Vanderwende, Lucy and Galley, Michel and Mitchell, Margaret. 2016. [Visual Storytelling](https://www.aclweb.org/anthology/N16-1147v1). In *Proceedings of ACL 2016*. 25 | * [WritingPrompts](https://dl.fbaipublicfiles.com/fairseq/data/writingPrompts.tar.gz): Fan, Angela and Lewis, Mike and Dauphin, Yann. 2018. [Hierarchical Neural Story Generation](http://aclweb.org/anthology/P18-1082). In *Proceedings of ACL 2018*. 26 | 27 |

Text Generation

28 | 29 | * [Yelp Review Generation Dataset](https://drive.google.com/open?id=1xCt04xWrVhbrSA7T5feV2WSukjmD4SnK): Xu, Jingjing and Ren, Xuancheng and Lin, Junyang and Sun, Xu. 2018. [Diversity-Promoting GAN: A Cross-Entropy Based Generative Adversarial Network for Diversified Text Generation](http://www.aclweb.org/anthology/D18-1428). In *Proceedings of EMNLP 2018*. 30 | * [Amazon Review Generation Dataset](https://s3.amazonaws.com/amazon-reviews-pds/readme.html): McAuley, Julian John and Leskovec, Jure. 2013. [From Amateurs to Connoisseurs: Modeling The Evolution of User Expertise Through Online Reviews](https://arxiv.org/pdf/1303.4402). In *Proceedings of WWW 2013*. 31 | * [Zhihu Dataset](https://github.com/hit-computer/MTA-LSTM) and [Composition Dataset](https://github.com/hit-computer/MTA-LSTM): Feng, Xiaocheng and Liu, Ming and Liu, Jiahao and Qin, Bing and Sun, Yibo and Liu, Ting. 2018. [Topic-to-essay generation with neural networks](https://www.ijcai.org/proceedings/2018/0567.pdf). In *Proceedings of IJCAI 2018*. 32 | * [ACL Title and Abstract Dataset](https://github.com/EagleW/ACL_titles_abstracts_dataset): Wang, Qingyun and Zhou, Zhihao and Huang, Lifu and Whitehead, Spencer and Zhang, Boliang and Ji, Heng and Knight, Kevin. 2018. [Paper Abstract Writing through Editing Mechanism](https://aclweb.org/anthology/P18-2042). In *Proceedings of ACL 2018*. 33 | * [AGENDA Dataset](https://github.com/rikdz/GraphWriter): Rik, Koncel-Kedziorski and Dhanush, Bekal and Yi, Luan and Mirella, Lapata and Hannaneh, Hajishirzi. 2019. [Text Generation from Knowledge Graphs with Graph Transformers](https://arxiv.org/pdf/1904.02342). In *Proceedings of NAACL-HLT 2019*. 34 | * [Data4StylizedS2S](https://github.com/MarkWuNLP/Data4StylizedS2S): Wu, Yu and Wang, Yunli and Liu, Shujie. 2020. [A Dataset for Low-Resource Stylized Sequence-to-Sequence Generation](https://www.msra.cn/wp-content/uploads/2020/01/A-Dataset-for-Low-Resource-Stylized-Sequence-to-Sequence-Generation.pdf). In *Proceedings of AAAI 2020*. 35 | 36 |

Tools

37 | 38 | * Hu, Zhiting and Yang, Zichao and Zhao, Tiancheng and Shi, Haoran and He, Junxian and Wang, Di and Ma, Xuezhe and Liu, Zhengzhong and Liang, Xiaodan and Qin, Lianhui and others. 2018. [Texar: A Modularized, Versatile, and Extensible Toolbox for Text Generation](http://www.aclweb.org/anthology/W18-2503). In *Proceedings of ACL 2018*. ([GitHub](https://github.com/asyml/texar)) 39 | * Zhu, Yaoming and Lu, Sidi and Zheng, Lei and Guo, Jiaxian and Zhang, Weinan and Wang, Jun and Yu, Yong. 2018. [Textgen: A Benchmarking Platform for Text Generation Models](https://arxiv.org/pdf/1802.01886). In *Proceedings of SIGIR 2018*. ([GitHub](https://github.com/geek-ai/Texygen)) 40 | * Radford, Alec and Wu, Jeffrey and Child, Rewon and Luan, David and Amodei, Dario and Sutskever, Ilya. 2019. [Language models are unsupervised multitask learners](https://www.techbooky.com/wp-content/uploads/2019/02/Better-Language-Models-and-Their-Implications.pdf). *OpenAI Blog*, 1:8. ([GitHub](https://github.com/openai/gpt-2)) 41 | * Seraphina, Goldfarb-Tarrant and Haining, Feng and Nanyun, Peng. 2019. [Plan, Write, and Revise: an Interactive System for Open-Domain Story Generation](https://arxiv.org/pdf/1904.02357). In *Proceedings of NAACL-HLT 2019*. ([GitHub](https://github.com/seraphinatarrant/plan-write-revise)) 42 | * Xu, Qiongkai and Xu, Chenchen and Qu, Lizhen. 2019. [ALTER: Auxiliary Text Rewriting Tool for Neural Language Generation](https://arxiv.org/pdf/1909.06564). In *Proceedings of EMNLP 2018 (Demo)*. ([GitHub](https://github.com/xuqiongkai/ALTER.)) 43 | 44 |

Papers

45 | 46 |

Related Papers

47 | 48 | * Kingma, Diederik P and Welling, Max. 2014. [Auto-Encoding Variational Bayes](https://arxiv.org/pdf/1312.6114). In *Proceedings of ICLR 2014*. ([Citation](https://scholar.google.com/scholar?cites=10486756931164834716&as_sdt=2005&sciodt=0,5&hl=en): 4,317) 49 | * Ilya Sutskever, Oriol Vinyals, and Quoc V. Le. 2014. [Sequence to Sequence Learning 50 | with Neural Networks](https://papers.nips.cc/paper/5346-sequence-to-sequence-learning-with-neural-networks.pdf). In *Proceedings of NeurIPS 2014*. ([Citation](https://scholar.google.com/scholar?cites=13133880703797056141&as_sdt=2005&sciodt=0,5&hl=en): 6,076) 51 | * Goodfellow, Ian and Pouget-Abadie, Jean and Mirza, Mehdi and Xu, Bing and Warde-Farley, David and Ozair, Sherjil and Courville, Aaron and Bengio, Yoshua. 2014. [Generative Adversarial Nets](https://papers.nips.cc/paper/5423-generative-adversarial-nets.pdf). In *Proceedings of NeurIPS 2014*. ([Citation](https://scholar.google.com/scholar?cites=11977070277539609369&as_sdt=2005&sciodt=0,5&hl=en): 7,952) 52 | * Dzmitry Bahdanau, Kyunghyun Cho, and Yoshua Bengio. 2015. [Neural Machine Translation by Jointly Learning to Align and Translate](https://arxiv.org/pdf/1409.0473.pdf). In *Proceedings of ICLR 2015*. ([Citation](https://scholar.google.com/scholar?cites=9430221802571417838&as_sdt=2005&sciodt=0,5&hl=en): 6,317) 53 | * Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N. Gomez, Lukasz Kaiser, and Illia Polosukhin. 2017. [Attention is All You Need](https://papers.nips.cc/paper/7181-attention-is-all-you-need.pdf). In *Proceedings of NeurIPS 2017*. ([Citation](https://scholar.google.com/scholar?cites=2960712678066186980&as_sdt=2005&sciodt=0,5&hl=en): 1,393) 54 | * Jacob, Devlin and Ming-Wei, Chang and Kenton, Lee and Kristina, Toutanova. 2018. [BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding](https://arxiv.org/pdf/1810.04805). In *Proceedings of NAACL-HLT 2019*. ([Citation](https://scholar.google.com/scholar?cites=3166990653379142174&as_sdt=2005&sciodt=0,5&hl=en): 345) 55 | 56 |

Seq2Seq Based Methods

57 | 58 | * Huang, Ting-Hao (Kenneth) and Ferraro, Francis and Mostafazadeh, Nasrin and Misra, Ishan and Agrawal, Aishwarya and Devlin, Jacob and Girshick, Ross and He, Xiaodong and Kohli, Pushmeet and Batra, Dhruv and Zitnick, C. Lawrence and Parikh, Devi and Vanderwende, Lucy and Galley, Michel and Mitchell, Margaret. 2016. [Visual Storytelling](https://www.aclweb.org/anthology/N16-1147v1). In *Proceedings of NAACL-HLT 2016*. ([Citation](https://scholar.google.com/scholar?cites=9965124402549083081&as_sdt=2005&sciodt=0,5&hl=en): 98) 59 | * Melissa Roemmele. 2016. [Writing Stories with Help from Recurrent Neural Networks](https://www.aaai.org/ocs/index.php/AAAI/AAAI16/paper/viewPDFInterstitial/11966/12271). In *Proceedings of AAAI 2016*. ([Citation](https://scholar.google.com/scholar?cites=9018102316841841981&as_sdt=2005&sciodt=0,5&hl=en): 13) 60 | * Jain, Parag and Agrawal, Priyanka and Mishra, Abhijit and Sukhwani, Mohak and Laha, Anirban and Sankaranarayanan, Karthik. 2017. [Story Generation from Sequence of Independent Short Descriptions](https://arxiv.org/pdf/1707.05501.pdf). In *Proceedings of SIGKDD 2017 Workshop on Machine Learning for Creativity (ML4Creativity)*. ([Citation](https://scholar.google.com/scholar?cites=14358226381084770135&as_sdt=2005&sciodt=0,5&hl=en): 16) 61 | * Liu, Tianyu and Wang, Kexiang and Sha, Lei and Chang, Baobao and Sui, Zhifang. 2017. [Table-to-text Generation by Structure-aware Seq2seq Learning](https://www.aaai.org/ocs/index.php/AAAI/AAAI18/paper/viewPDFInterstitial/16599/16019). In *Proceedings of AAAI 2018*. ([Citation](https://scholar.google.com/scholar?cites=17393004222760593181&as_sdt=2005&sciodt=0,5&hl=en): 14) 62 | * Fan, Angela and Lewis, Mike and Dauphin, Yann. 2018. [Hierarchical Neural Story Generation](http://aclweb.org/anthology/P18-1082). In *Proceedings of ACL 2018*. ([Citation](https://scholar.google.com/scholar?cites=6764929710004991388&as_sdt=2005&sciodt=0,5&hl=en): 18) 63 | * Song, Linfeng and Zhang, Yue and Wang, Zhiguo and Gildea, Daniel. 2018. [A Graph-to-Sequence Model for AMR-to-Text Generation](http://aclweb.org/anthology/P18-1150). In *Proceedings of ACL 2018*. ([Ciation](https://scholar.google.com/scholar?cites=8568627526215419713&as_sdt=2005&sciodt=0,5&hl=en): 10) 64 | * Martin, Lara J and Ammanabrolu, Prithviraj and Wang, Xinyu and Hancock, William and Singh, Shruti and Harrison, Brent and Riedl, Mark O. 2018. [Event Representations for Automated Story Generation with Deep Neural Nets](https://www.aaai.org/ocs/index.php/AAAI/AAAI18/paper/download/17046/15769). In *Proceedings of AAAI 2018*. ([Citation](https://scholar.google.com/scholar?cites=9614219931725711912&as_sdt=2005&sciodt=0,5&hl=en): 30) 65 | * Clark, Elizabeth and Ji, Yangfeng and Smith, Noah A. 2018. [Neural Text Generation in Stories Using Entity Representation as Contex](https://www.aclweb.org/anthology/N18-1204). In *Proceedings of NAACL-HLT 2018*. ([Citation](https://scholar.google.com/scholar?cites=14104683731447446967&as_sdt=2005&sciodt=0,5&hl=en): 7) 66 | * Wiseman, Sam and Shieber, Stuart and Rush, Alexander. 2018. [Learning Neural Templates for Text Generation](http://aclweb.org/anthology/D18-1356). In *Proceedings of EMNLP 2018*. ([Citation](https://scholar.google.com/scholar?cites=2282906185491164916&as_sdt=2005&sciodt=0,5&hl=en): 5) 67 | * Chaturvedi, Snigdha and Peng, Haoruo and Roth, Dan. 2018. [Story Comprehension for Predicting What Happens Next](http://www.aclweb.org/anthology/D17-1168). In *Proceedings of EMNLP 2018*. ([Citation](https://scholar.google.com/scholar?cites=6900730782989730577&as_sdt=2005&sciodt=0,5&hl=en): 15) 68 | * Zhang, Yue and Liu, Qi and Song, Linfeng. 2018. [Sentence-State LSTM for Text Representation](http://aclweb.org/anthology/P18-1030). In *Proceedings of ACL 2018*. ([Citation](https://scholar.google.com/scholar?cites=17679938345108531171&as_sdt=2005&sciodt=0,5&hl=en): 5) 69 | * Kezar, Lee. 2018. [Mixed Feelings: Natural Text Generation with Variable, Coexistent Affective Categories](http://www.aclweb.org/anthology/P18-3020). In *Proceedings of ACL 2018, Student Research Workshop*. 70 | * Yao, Lili and Peng, Nanyun and Weischedel, Ralph and Knight, Kevin and Zhao, Dongyan and Yan, Rui. 2019. [Plan-and-Write: Towards Better Automatic Storytelling](https://wvvw.aaai.org/ojs/index.php/AAAI/article/view/4726) In *Proceedings of AAAI 2019*. [[code](https://bitbucket.org/VioletPeng/language-model)] ([Citation](https://scholar.google.com/scholar?cites=9107726936970933493&as_sdt=2005&sciodt=0,5&hl=en&newwindow=1): 22) 71 | * Welleck, Sean and Brantley, Kianté and Daumé III, Hal and Cho, Kyunghyun. 2019. [Non-Monotonic Sequential Text Generation](https://arxiv.org/pdf/1902.02192). In *Proceedings of ICML 2019*. ([Citation](https://scholar.google.com/scholar?cites=16018486661840997659&as_sdt=2005&sciodt=0,5&hl=en): 1) 72 | * Nikolaos, Pappas and James, Henderson. 2019. [Deep Residual Output Layers for Neural Language Generation](http://proceedings.mlr.press/v97/pappas19a/pappas19a.pdf). In *Proceedings of ICML 2019*. 73 | * Amit, Moryossef and Yoav, Goldberg and Ido, Dagan. 2019. [Step-by-Step: Separating Planning from Realization in Neural Data to Text Generation](https://arxiv.org/pdf/1904.03396). In *Proceedings of NAACL-HLT 2019*. 74 | * Sheng, Shen and Daniel, Fried and Jacob, Andreas and Dan, Klein. 2019. [Pragmatically Informative Text Generation](https://arxiv.org/pdf/1904.01301). In *Proceedings of NAACL-HLT 2019*. 75 | * Fan, Angela and Lewis, Mike and Dauphin, Yann. 2019. [Strategies for Structuring Story Generation](https://www.aclweb.org/anthology/P19-1254). In *Proceedings of ACL 2019*. 76 | * Wang, Liang and Zhao, Wei and Jia, Ruoyu and Li, Sujian and Liu, Jingming. 2019. [Denoising based Sequence-to-Sequence Pre-training for Text Generation](https://arxiv.org/pdf/1908.08206). In *Proceedings of EMNLP 2019*. [[code](https://github.com/yuantiku/PoDA)] 77 | * Welleck, Sean and Kulikov, Ilia and Roller, Stephen and Dinan, Emily and Cho, Kyunghyun and Weston, Jason. 2020. [Neural Text Generation With Unlikelihood Training](https://arxiv.org/pdf/1908.04319). *Accepted by ICLR 2020*. [[code](https://github.com/facebookresearch/unlikelihood_training)] ([Citation](https://scholar.google.com/scholar?cites=16638535268657480159&as_sdt=2005&sciodt=0,5&hl=en): 3) 78 | * Li, Zuchao and Wang, Rui and Chen, Kehai and Utiyama, Masso and Sumita, Eiichiro and Zhang, Zhuosheng and Zhao, Hai. 2020. [Data-dependent Gaussian Prior Objective for Language Generation](https://openreview.net/pdf?id=S1efxTVYDr). *Accepted by ICLR 2020*. 79 | * Wang, Lingxiao and Huang, Jing and Huang, Kevin and Hu, Ziniu and Wang, Guangtao and Gu, Quanquan. 2020. [Improving Neural Language Generation with Spectrum Control](https://openreview.net/pdf?id=ByxY8CNtvr). *Accepted by ICLR 2020*. 80 | 81 |

Variational Autoencoder Based Methods

82 | 83 | * Li, Jiwei and Luong, Thang and Jurafsky, Dan. 2015. [A Hierarchical Neural Autoencoder for Paragraphs and Documents](http://aclweb.org/anthology/P15-1107). In *Proceedings of ACL 2015*. ([Citation](https://scholar.google.com/scholar?cites=8614969202104458050&as_sdt=2005&sciodt=0,5&hl=en): 283) 84 | * Bowman, Samuel R. and Vilnis, Luke and Vinyals, Oriol and Dai, Andrew and Jozefowicz, Rafal and Bengio, Samy. 2016. [Generating Sentences from a Continuous Space](https://www.aclweb.org/anthology/K16-1002.pdf). In *Proceedings of The 20th {SIGNLL} Conference on Computational Natural Language Learning*. [[code](https://github.com/timbmg/Sentence-VAE)] ([Citation](https://scholar.google.com.hk/scholar?cites=16818159771321533388&as_sdt=2005&sciodt=0,5&hl=en): 754) 85 | * Semeniuta, Stanislau and Severyn, Aliaksei and Barth, Erhardt. 2017. [A Hybrid Convolutional Variational Autoencoder for Text Generation](https://arxiv.org/pdf/1702.02390). In *Proceedings of EMNLP 2017*. ([Citation](https://scholar.google.com/scholar?cites=22686147435504388&as_sdt=2005&sciodt=0,5&hl=en): 57) 86 | * Serban, Iulian Vlad and Ororbia II, Alexander and Pineau, Joelle and Courville, Aaron. 2017. [Piecewise Latent Variables for Neural Variational Text Processing](http://aclweb.org/anthology/W17-4308). In *Proceedings of EMNLP 2017*. ([Citation](https://scholar.google.com/scholar?cites=17428157778918133456&as_sdt=2005&sciodt=0,5&hl=en): 11) 87 | * Yang, Zichao and Hu, Zhiting and Salakhutdinov, Ruslan and Berg-Kirkpatrick, Taylor. 2017. [Improved Variational Autoencoders for Text Modeling using Dilated Convolutions](https://arxiv.org/pdf/1702.08139). In *Proceedings of ICML 2017*. ([Citation](https://scholar.google.com/scholar?cites=123823476347966018&as_sdt=2005&sciodt=0,5&hl=en): 72) 88 | * Hu, Zhiting and Yang, Zichao and Liang, Xiaodan and Salakhutdinov, Ruslan and Xing, Eric P. 2017. [Toward Controlled Generation of Text](https://arxiv.org/pdf/1703.00955). In *Proceedings of ICML 2017*. ([Citation](https://scholar.google.com/scholar?cites=14533919283203963154&as_sdt=2005&sciodt=0,5&hl=en): 120) 89 | * Deng, Yuntian and Kim, Yoon and Chiu, Justin and Guo, Demi and Rush, Alexander. 2018. [Latent Alignment and Variational Attention](https://papers.nips.cc/paper/8179-latent-alignment-and-variational-attention.pdf). In *Proceedings of NeurIPS 2018*. ([Citation](https://scholar.google.com/scholar?cites=6335407498429393003&as_sdt=2005&sciodt=0,5&hl=en): 9) 90 | * Kim, Yoon and Wiseman, Sam and Miller, Andrew C and Sontag, David and Rush, Alexander M. 2018. [Semi-Amortized Variational Autoencoders](https://arxiv.org/pdf/1802.02550.pdf). In *Proceedings of ICML 2018*. ([Citation](https://scholar.google.com/scholar?cites=15696369664604442539&as_sdt=2005&sciodt=0,5&hl=en): 27) 91 | * Bahuleyan, Hareesh and Mou, Lili and Vechtomova, Olga and Poupart, Pascal. 2018. [Variational Attention for Sequence-to-Sequence Models](http://aclweb.org/anthology/C18-1142). In *Proceedings of COLING 2018*. ([Citation](https://scholar.google.com/scholar?cites=1653411252630135531&as_sdt=2005&sciodt=0,5&hl=en): 14) 92 | * Xu, Jiacheng and Durrett, Greg. 2018. [Spherical Latent Spaces for Stable Variational Autoencoders](https://aclweb.org/anthology/D18-1480). In *Proceedings of EMNLP 2018*. ([Citation](https://scholar.google.com/scholar?cites=4068019460537216592&as_sdt=2005&sciodt=0,5&hl=en): 6) 93 | * Yoo, Kang Min and Shin, Youhyun and Lee, Sang-goo. 2019. [Data Augmentation for Spoken Language Understanding via Joint Variational Generation](https://aaai.org/ojs/index.php/AAAI/article/view/4729/4607). In *Proceedings of AAAI 2019*. ([Citation](https://scholar.google.com.hk/scholar?cites=17056303147521193482&as_sdt=2005&sciodt=0,5&hl=en&newwindow=1): 2) 94 | * Wenlin, Wang and Zhe, Gan and Hongteng, Xu and Ruiyi, Zhang and Guoyin, Wang and Dinghan, Shen and Changyou, Chen and Lawrence, Carin. 2019. [Topic-Guided Variational Auto-Encoder for Text Generation](https://arxiv.org/pdf/1903.07137). In *Proceedings of NAACL-HLT 2019*. 95 | * Bahuleyan, Hareesh and Mou, Lili and Vamaraju, Kartik and Zhou, Hao and Vechtomova, Olga. 2019. [Probabilistic Natural Language Generation with Wasserstein Autoencoders](https://arxiv.org/pdf/1806.08462). In *Proceedings of NAACL-HLT 2019*. ([Citation](https://scholar.google.com/scholar?cites=17386155724233565752&as_sdt=2005&sciodt=0,5&hl=en): 3) 96 | * Gu, Xiaodong and Cho, Kyunghyun and Ha, Jung-Woo and Kim, Sunghun. 2019. [DialogWAE: Multimodal Response Generation with Conditional Wasserstein Auto-Encoder](https://openreview.net/pdf?id=BkgBvsC9FQ). In *Proceedings of ICLR 2019*. ([Citation](https://scholar.google.com.hk/scholar?newwindow=1&safe=strict&hl=en&uact=5&um=1&ie=UTF-8&lr&cites=3591710081490434640): 9) 97 | * Zhang, Xinyuan and Yang, Yi and Yuan, Siyang and Shen, Dinghan and Carin, Lawrence. 2019. [Syntax-Infused Variational Autoencoder for Text Generation](https://www.aclweb.org/anthology/P19-1199). In *Proceedings of ACL 2019*. 98 | * Shen, Dinghan and Celikyilmaz, Asli and Zhang, Yizhe and Chen, Liqun and Wang, Xin and Gao, Jianfeng and Carin, Lawrence. 2019. [Towards Generating Long and Coherent Text with Multi-Level Latent Variable Models](https://www.aclweb.org/anthology/P19-1200). In *Proceedings of ACL 2019*. 99 | * Shao, Zhihong and Huang, Minlie and Wen, Jiangtao and Xu, Wenfei and Zhu, Xiaoyan. 2019. [Long and Diverse Text Generation with Planning-based Hierarchical Variational Model](https://arxiv.org/pdf/1908.06605v2). In *Proceedings of EMNLP 2019*. [[code](https://github.com/ZhihongShao/Planning-based-Hierarchical-Variational-Model)] 100 | * Miao, Ning and Zhou, Hao and Zhao, Chengqi and Shi, Wenxian and Li, Lei. 2019. [Kernelized Bayesian Softmax for Text Generation](https://papers.nips.cc/paper/9415-kernelized-bayesian-softmax-for-text-generation.pdf). In *Proceedings of NeurIPS 2019*. [[code](https://github.com/NingMiao/KerBS)] 101 | 102 |

Generative Adversarial Nets Based Methods

103 | 104 | * Kusner, Matt J and Hernández-Lobato, José Miguel. 2016. [GANS for Sequences of Discrete Elements with the Gumbel-softmax Distribution](https://arxiv.org/pdf/1611.04051). *arXiv preprint arXiv:1611.04051*. ([Citation](https://scholar.google.com/scholar?cites=11002066464238691420&as_sdt=2005&sciodt=0,5&hl=en): 71) 105 | * Li, Jiwei and Monroe, Will and Shi, Tianlin and Jean, Sébastien and Ritter, Alan and Jurafsky, Dan. 2017. [Adversarial Learning for Neural Dialogue Generation](https://www.aclweb.org/anthology/D17-1230.pdf). In *Proceedings of EMNLP 2017*. [[code](https://github.com/liuyuemaicha/Adversarial-Learning-for-Neural-Dialogue-Generation-in-Tensorflow)] ([Citation](https://scholar.google.com.hk/scholar?cites=2709411320030823497&as_sdt=2005&sciodt=0,5&hl=en): 385) 106 | * Gulrajani, Ishaan and Ahmed, Faruk and Arjovsky, Martin and Dumoulin, Vincent and Courville, Aaron C. 2017. [Improved Training of Wasserstein GANs](https://papers.nips.cc/paper/7159-improved-training-of-wasserstein-gans.pdf). In *Proceedings of NeurIPS 2017*. ([Citation](https://scholar.google.com/scholar?cites=3068694056154618633&as_sdt=2005&sciodt=0,5&hl=en): 1,102) 107 | * Yu, Lantao and Zhang, Weinan and Wang, Jun and Yu, Yong. 2017. [SeqGAN: Sequence Generative Adversarial Nets with Policy Gradient](https://www.aaai.org/ocs/index.php/AAAI/AAAI17/paper/download/14344/14489). In *Proceedings of AAAI 2017*. ([Citation](https://scholar.google.com/scholar?cites=13783508915327278077&as_sdt=2005&sciodt=0,5&hl=en): 436) 108 | * Lin, Kevin and Li, Dianqi and He, Xiaodong and Zhang, Zhengyou and Sun, Ming-Ting. 2017. [Adversarial ranking for language generation](http://papers.nips.cc/paper/6908-adversarial-ranking-for-language-generation.pdf). In *Advances in NeurIPS 2017*. [[code](https://github.com/desire2020/RankGAN)] ([Citation](https://scholar.google.com/scholar?cites=6871069604642164772&as_sdt=2005&sciodt=0,5&hl=en): 117) 109 | * Che, Tong and Li, Yanran and Zhang, Ruixiang and Hjelm, R Devon and Li, Wenjie and Song, Yangqiu and Bengio, Yoshua. 2017. [Maximum-likelihood augmented discrete generative adversarial networks](https://arxiv.org/pdf/1702.07983.pdf). *arXiv preprint arXiv:1702.07983*. [[code](https://github.com/geek-ai/Texygen)] ([Citation](https://scholar.google.com/scholar?cites=15378466307857672293&as_sdt=2005&sciodt=0,5&hl=en): 109) 110 | * Liang, Xiaodan and Hu, Zhiting and Zhang, Hao and Gan, Chuang and Xing, Eric P. 2017. [Recurrent Topic-Transition GAN for Visual Paragraph Generation](http://openaccess.thecvf.com/content_ICCV_2017/papers/Liang_Recurrent_Topic-Transition_GAN_ICCV_2017_paper.pdf). In *Proceedings of IEEE 2017*. ([Citation](https://scholar.google.com/scholar?cites=7127182007926953895&as_sdt=2005&sciodt=0,5&hl=en): 65) 111 | * Zhang, Yizhe and Gan, Zhe and Fan, Kai and Chen, Zhi and Henao, Ricardo and Shen, Dinghan and Carin, Lawrence. 2017. [Adversarial Feature Matching for Text Generation](https://arxiv.org/pdf/1706.03850). In *Proceedings of ICML 2017*. ([Citation](https://scholar.google.com/scholar?cites=11561684801033759674&as_sdt=2005&sciodt=0,5&hl=en): 68) 112 | * Guo, Jiaxian and Lu, Sidi and Cai, Han and Zhang, Weinan and Yu, Yong and Wang, Jun. 2017. [Long Text Generation via Adversarial Training with Leaked Information](https://www.aaai.org/ocs/index.php/AAAI/AAAI18/paper/viewPDFInterstitial/16360/16061). In *Proceedings of AAAI 2018*. [[code](https://github.com/CR-Gjx/LeakGAN)] ([Citation](https://scholar.google.com/scholar?cites=10032525507167574810&as_sdt=2005&sciodt=0,5&hl=en): 46) 113 | * Xu, Jingjing and Ren, Xuancheng and Lin, Junyang and Sun, Xu. 2018. [Diversity-Promoting GAN: A Cross-Entropy Based Generative Adversarial Network for Diversified Text Generation](http://www.aclweb.org/anthology/D18-1428). In *Proceedings of EMNLP 2018*. ([Citation](https://scholar.google.com/scholar?cites=7729303371257026386&as_sdt=2005&sciodt=0,5&hl=en): 2) 114 | * Mroueh, Youssef and Li, Chun-Liang and Sercu, Tom and Raj, Anant and Cheng, Yu. 2018. [Sobolev GAN](https://arxiv.org/abs/1711.04894). In *Proceedings of ICLR 2018*. ([Citation](https://scholar.google.com/scholar?cites=16587521411741023583&as_sdt=2005&sciodt=0,5&hl=en): 22) 115 | * Fedus, William and Goodfellow, Ian and Dai, Andrew M. 2018. [MaskGAN: Better Text Generation via Filling in the_](https://arxiv.org/pdf/1801.07736). In *Proceedings of ICLR 2018*. ([Citation](https://scholar.google.com/scholar?cites=8054442901795858629&as_sdt=2005&sciodt=0,5&hl=en): 58) 116 | * Li, Jianing and Lan, Yanyan and Guo, Jiafeng and Xu, Jun and Cheng, Xueqi. 2019. [Differentiated Distribution Recovery for Neural Text Generation](https://www.aaai.org/ojs/index.php/AAAI/article/view/4639/4517). In *Proceedings of AAAI 2019*. 117 | * Nie, Weili and Narodytska, Nina and Patel, Ankit. 2019. [RelGAN: Relational Generative Adversarial Networks for Text Generation](https://openreview.net/pdf?id=rJedV3R5tm). In *Proceedings of ICLR 2019*. ([Citation](https://scholar.google.com.hk/scholar?cites=8523757541722331979&as_sdt=2005&sciodt=0,5&hl=en&newwindow=1): 5) 118 | * Jiang, Haoming and Chen, Zhehui and Chen, Minshuo and Liu, Feng and Wang, Dingding and Zhao, Tuo. 2019. [On Computation and Generalization of GANs with Spectrum Control](https://openreview.net/pdf?id=rJNH6sAqY7). In *Proceedings of ICLR 2019*. ([Citation](https://scholar.google.com/scholar?cites=11508884003947090136&as_sdt=2005&sciodt=0,5&hl=en): 3) 119 | * Chen, Francine and Chen, Yan-Ying. 2019. [Adversarial Domain Adaptation Using Artificial Titles for Abstractive Title Generation](https://www.aclweb.org/anthology/P19-1211). In *Proceedings of ACL 2019*. 120 | * Ke, Pei and Huang, Fei and Huang, Minlie and Zhu, Xiaoyan. 2019. [ARAML: A Stable Adversarial Training Framework for Text Generation](https://arxiv.org/pdf/1908.07195v1). In *Proceedings of EMNLP 2019*. [[code]( https://github.com/kepei1106/ARAML)] 121 | * Zhou, Wangchunshu and Ge, Tao and Xu, Ke and Wei, Furu and Zhou, Ming. 2020. [Self-Adversarial Learning with Comparative Discrimination for Text Generation](https://arxiv.org/pdf/2001.11691.pdf). *Accepted by ICLR 2020*. 122 | * Liu, Zhiyue and Wang, Jiahai and Liang, Zhiwei. 2020. [CatGAN: Category-aware Generative Adversarial Networks with Hierarchical Evolutionary Learning for Category Text Generation](https://arxiv.org/pdf/1911.06641). In *Proceedings of AAAI 2020*. [[code](https://github.com/williamSYSU/CatGAN)] 123 | 124 |

Reinforcement Learning Based Methods

125 | 126 | * Li, Jiwei and Monroe, Will and Ritter, Alan and Galley, Michel and Gao, Jianfeng and Jurafsky, Dan. 2016. [Deep Reinforcement Learning for Dialogue Generation](https://www.aclweb.org/anthology/D16-1127.pdf). In *Proceedings of EMNLP 2016*. [[code](https://github.com/liuyuemaicha/Deep-Reinforcement-Learning-for-Dialogue-Generation-in-tensorflow)] ([Citation](https://scholar.google.com.hk/scholar?cites=1196225117608418887&as_sdt=2005&sciodt=0,5&hl=en): 500) 127 | * Lin, Kevin and Li, Dianqi and He, Xiaodong and Zhang, Zhengyou and Sun, Ming-Ting. 2017. [Adversarial Ranking for Language Generation](http://papers.nips.cc/paper/6908-adversarial-ranking-for-language-generation.pdf). In *Proceedings of NeurIPS 2017*. ([Citation](https://scholar.google.com/scholar?cites=6871069604642164772&as_sdt=2005&sciodt=0,5&hl=en): 54) 128 | * Che, Tong and Li, Yanran and Zhang, Ruixiang and Hjelm, R Devon and Li, Wenjie and Song, Yangqiu and Bengio, Yoshua. 2017. [Maximum-Likelihood Augmented Discrete Generative Adversarial Networks](https://arxiv.org/pdf/1702.07983). *arXiv preprint arXiv:1702.07983*. ([Citation](https://scholar.google.com/scholar?cites=15378466307857672293&as_sdt=2005&sciodt=0,5&hl=en): 64) 129 | * Xu, Jingjing and Zhang, Yi and Zeng, Qi and Ren, Xuancheng and Cai, Xiaoyan and Sun, Xu. 2018. [A Skeleton-Based Model for Promoting Coherence Among Sentences in Narrative Story Generation](https://arxiv.org/pdf/1808.06945). In *Proceedings of EMNLP 2018*. ([Citation](https://scholar.google.com/scholar?cites=12919425531135632296&as_sdt=2005&sciodt=0,5&hl=en): 4) 130 | * Wang, Xin and Chen, Wenhu and Wang, Yuan-Fang and Wang, William Yang. 2018. [No Metrics Are Prefect: Adversarial Reward Learning for Visual Storytelling](http://aclweb.org/anthology/P18-1083). In *Proceedings of ACL 2018*. ([Citation](https://scholar.google.com/scholar?cites=13450499082659265456&as_sdt=2005&sciodt=0,5&hl=en): 19) 131 | * Hjelm, R Devon and Jacob, Athul Paul and Che, Tong and Trischler, Adam and Cho, Kyunghyun and Bengio, Yoshua. 2018. [Boundary-Seeking Generative Adversarial Networks](https://arxiv.org/pdf/1702.08431). In *Proceedings of ICLR 2018*. ([Citation](https://scholar.google.com/scholar?cites=7554343861717834099&as_sdt=2005&sciodt=0,5&hl=en): 52) 132 | * Shi, Zhan and Chen, Xinchi and Qiu, Xipeng and Huang, Xuanjing. 2018. [Towards Diverse Text Generation with Inverse Reinforcement Learning](https://arxiv.org/pdf/1804.11258). In *Proceedings of IJCAI 2018*. ([Citation](https://scholar.google.com/scholar?cites=10639156588114407661&as_sdt=2005&sciodt=0,5&hl=en): 4) 133 | * Subramanian, Sandeep and Mudumba, Sai Rajeswar and Sordoni, Alessandro and Trischler, Adam and Courville, Aaron C and Pal, Chris. 2018. [Towards Text Generation with Adversarially Learned Neural Outlines](https://papers.nips.cc/paper/7983-towards-text-generation-with-adversarially-learned-neural-outlines.pdf). In *Advances in NeurIPS 2018*. ([Citation](https://scholar.google.com.hk/scholar?cites=9808478999936203014&as_sdt=2005&sciodt=0,5&hl=en): 2) 134 | * Huang, Qiuyuan and Gan, Zhe and Celikyilmaz, Asli and Wu, Dapeng and Wang, Jianfeng and He, Xiaodong. 2019. [Hierarchically Structured Reinforcement Learning for Topically Coherent Visual Story Generation](https://aaai.org/ojs/index.php/AAAI/article/view/4863/4736). In *Proceedings of AAAI 2019*. ([Citation](https://scholar.google.com.hk/scholar?cites=7753557183070599302&as_sdt=2005&sciodt=0,5&hl=en&newwindow=1): 9) 135 | * Kazuma, Hashimoto and Yoshimasa, Tsuruoka. 2019. [Accelerated Reinforcement Learning for Sentence Generation by Vocabulary Prediction](https://arxiv.org/pdf/1809.01694). In *Proceedings of NAACL-HLT 2019*. 136 | * Chan, Hou Pong and Chen, Wang and Wang, Lu and King, Irwin. 2019. [Neural Keyphrase Generation via Reinforcement Learning with Adaptive Rewards](https://www.aclweb.org/anthology/P19-1208). In *Proceedings of ACL 2019*. 137 | * Chen, Yu and Wu, Lingfei and Zaki, Mohammed J. 2020. [Reinforcement Learning Based Graph-to-Sequence Model for Natural Question Generation](https://arxiv.org/pdf/1908.04942.pdf). *Accepted by ICLR 2020*. [[code](https://github.com/hugochan/RL-based-Graph2Seq-for-NQG)] ([Citation](https://scholar.google.com/scholar?cites=5519507630710292821&as_sdt=2005&sciodt=0,5&hl=en): 1) 138 | * Chen, Liqun and Bai, Ke and Tao, Chenyang and Zhang, Yizhe and Wang, Guoyin and Wang, Wenlin and Henao, Ricardo and Carin, Lawrence. 2020. [Sequence Generation with Optimal-Transport-Enhanced Reinforcement Learning](https://pdfs.semanticscholar.org/826d/b2e5f340a90fc9672279f9e921b596aba4b7.pdf). In *Proceedings of AAAI 2020*. 139 | 140 |

Knowledge Based Methods

141 | 142 | * Liu, Hugo and Singh, Push. 2002. [MAKEBELIEVE: Using Commonsense Knowledge to Generate Stories](https://www.aaai.org/Papers/AAAI/2002/AAAI02-146.pdf). In *Proceedings of AAAI 2002*. ([Citation](https://scholar.google.com/scholar?cites=8122308501089511186&as_sdt=2005&sciodt=0,5&hl=en): 86) 143 | * Yang, Bishan and Mitchell, Tom. 2017. [Leveraging Knowledge Bases in LSTMs for Improving Machine Reading](http://aclweb.org/anthology/P17-1132). In *Proceedings of ACL 2017*. ([Citation](https://scholar.google.com/scholar?cites=2883250958357294100&as_sdt=2005&sciodt=0,5&hl=en): 36) 144 | * Ghazvininejad, Marjan and Brockett, Chris and Chang, Ming-Wei and Dolan, Bill and Gao, Jianfeng and Yih, Wen-tau and Galley, Michel. 2018. [A Knowledge-Grounded Neural Conversation Model](https://www.aaai.org/ocs/index.php/AAAI/AAAI18/paper/viewPDFInterstitial/16710/16057). In *Proceedings of AAAI 2018*. ([Citation](https://scholar.google.com/scholar?cites=10303927314409501955&as_sdt=2005&sciodt=0,5&hl=en): 61) 145 | * Li, Qian and Li, Ziwei and Wei, Jin-Mao and Gu, Yanhui and Jatowt, Adam and Yang, Zhenglu. 2018. [A Multi-Attention Based Neural Network with External Knowledge for Story Ending Predicting Task](http://www.aclweb.org/anthology/C18-1149). In *Proceedings of COLING 2018*. ([Citation](https://scholar.google.com/scholar?cites=223037972284583941&as_sdt=2005&sciodt=0,5&hl=en): 4) 146 | * Jian Guan, Yansen Wang and Minlie Huang. 2019. [Story Ending Generation with Incremental Encoding and Commonsense Knowledge](https://arxiv.org/pdf/1808.10113). In *Proceedings of AAAI 2019*. ([Citation](https://scholar.google.com/scholar?cites=13136733550716745125&as_sdt=2005&sciodt=0,5&hl=en): 3) 147 | * Chen, Jiaao and Chen, Jianshu and Yu, Zhou. 2019. [Incorporating Structured Commonsense Knowledge in Story Completion](https://arxiv.org/pdf/1811.00625). In *Proceedings of AAAI 2019*. 148 | * Shang, Mingyue and Fu, Zhenxin and Yin, Hongzhi and Tang, Bo and Zhao, Dongyan and Yan, Rui. 2019. [Find a Reasonable Ending for Stories: Does Logic Relation Help the Story Cloze Test?](https://arxiv.org/pdf/1812.05411). In *Student Abstract of AAAI 2019*. 149 | * Li, Christy Y. and Liang, Xiaodan and Hu, Zhiting and Xing, Eric P.. 2019. [Knowledge-Driven Encode, Retrieve, Paraphrase for Medical Image Report Generation](https://arxiv.org/pdf/1903.10122). In *Proceedings of AAAI 2019*. ([Citation](https://scholar.google.com.hk/scholar?newwindow=1&safe=strict&hl=en&uact=5&um=1&ie=UTF-8&lr&cites=5403991409311522092): 4) 150 | * Koncel-Kedziorshi, Rik and Bekal, Dhanush and Luan, Yi and Lapata, Mirella and Hajishirzi, Hannaneh. 2019. [Text Generation from Knowledge Graphs with Graph Transformers](https://arxiv.org/pdf/1904.02342). In *Proceedings of NAACL-HLT 2019*. 151 | * Valerie, Hajdik and Jan, Buys and Michael W., Goodman and Emily M., Bender. 2019. [Neural Text Generation from Rich Semantic Representations](https://arxiv.org/pdf/1904.11564). In *Proceedings of NAACL-HLT 2019*. 152 | * Yang, Pengcheng and Luo, Fuli and Chen, Peng and Li, Lei and Chang, Baobao and Sui, Zhifang and Sun, Xu. 2019. [Knowledgeable Storyteller: A Commonsense-Driven Generative Model for Visual Storytelling](https://www.ijcai.org/proceedings/2019//0744.pdf). In *Proceedings of IJCAI 2019*. 153 | * Yang, Pengcheng and Li, Lei and Luo, Fuli and Liu, Tianyu and Sun, Xu. 2019. [Enhancing Topic-to-Essay Generation with External Commonsense Knowledge](https://www.aclweb.org/anthology/P19-1193). In *Proceedings of ACL 2019*. 154 | * Mao, Huanru Henry and Majumder, Bodhisattwa Prasad and McAuley, Julian and Cottrell, Garrison. 2019. [Improving Neural Story Generation by Targeted Common Sense Grounding](https://www.aclweb.org/anthology/D19-1615.pdf). In *Proceedings of EMNLP 2019*. [[code]( https://github.com/calclavia/story-generation)] ([Citation](https://scholar.google.com/scholar?cites=2364018610868616832&as_sdt=2005&sciodt=0,5&hl=en&newwindow=1): 1) 155 | * Zhao, Xueliang and Wu, Wei and Tao, Chongyang and Xu, Can and Zhao, Dongyan and Yan, Rui. 2020. [Low-Resource Knowledge-Grounded Dialogue Generation](https://openreview.net/pdf?id=rJeIcTNtvS). *Accepted by ICLR 2020*. 156 | * Wang, Jian and Liu, Junhao and Bi, Wei and Liu, Xiaojiang and He, Kejing and Xu, Ruifeng and Yang, Min. 2020. [Improving Knowledge-aware Dialogue Generation via Knowledge Base Question Answering](https://arxiv.org/pdf/1912.07491). In *Proceedings of AAAI 2020*. [[code](https://github.com/siat-nlp/TransDG)] 157 | 158 |

Style Transfer

159 | 160 | * Hu, Zhiting and Yang, Zichao and Liang, Xiaodan and Salakhutdinov, Ruslan and Xing, Eric P.. 2017. [Toward Controlled Generation of Text](https://arxiv.org/pdf/1703.00955). In *Proceedings of ICML 2017*. [[code](https://github.com/GBLin5566/toward-controlled-generation-of-text-pytorch)] ([Citation](https://scholar.google.com.hk/scholar?cites=14533919283203963154&as_sdt=2005&sciodt=0,5&hl=en): 179) 161 | * Shen, Tianxiao and Lei, Tao and Barzilay, Regina and Jaakkola, Tommi. 2017. [Style Transfer from Non-Parallel Text by Cross-Alignment](https://papers.nips.cc/paper/7259-style-transfer-from-non-parallel-text-by-cross-alignment.pdf). In *Proceedings of NeurIPS 2017*. [[code](https://github.com/fuzhenxin/text_style_transfer)]([Citation](https://scholar.google.com.hk/scholar?um=1&ie=UTF-8&lr&cites=14976647505606347245&hl=en): 123) 162 | * Han, Mengqiao and Wu, Ou and Niu, Zhendong. 2017. [Unsupervised Automatic Text Style Transfer using LSTM](http://tcci.ccf.org.cn/conference/2017/papers/1135.pdf). In *Proceedings of NLPCC 2017*. ([Citation](https://scholar.google.com.hk/scholar?cites=1808563941614441427&as_sdt=2005&sciodt=0,5&hl=en): 5) 163 | * Li, Juncen and Jia, Robin and He, He and Liang, Percy. 2018. [Delete, retrieve, generate: A simple approach to sentiment and style transfer](https://www.aclweb.org/anthology/N18-1169). In *Proceedings of NAACL-HLT 2018*. [[code](https://github.com/lijuncen/Sentiment-and-Style-Transfer)] ([Citation](https://scholar.google.com.hk/scholar?cites=6740663285538036044&as_sdt=2005&sciodt=0,5&hl=en): 53) 164 | * Zhang, Ye and Ding, Nan and Soricut, Radu. [SHAPED: Shared-Private Encoder-Decoder for Text Style Adaptation](https://www.aclweb.org/anthology/N18-1138). In *Proceedings of NAACL-HLT 2018*. ([Citation](https://scholar.google.com.hk/scholar?cites=9989777355066105991&as_sdt=2005&sciodt=0,5&hl=en): 9) 165 | * Prabhumoye, Shrimai and Tsvetkov, Yulia and Salakhutdinov, Ruslan and Black, Alan W. 2018. [Style Transfer Through Back-Translation](https://www.aclweb.org/anthology/P18-1080). In *Proceedings of ACL 2018*. [[code](https://github.com/shrimai/Style-Transfer-Through-Back-Translation)] ([Citation](https://scholar.google.com.hk/scholar?cites=9688974258985905206&as_sdt=2005&sciodt=0,5&hl=en): 47) 166 | * Xu, Jingjing and Sun, Xu and Zeng, Qi and Ren, Xuancheng and Zhang, Xiaodong and Wang, Houfeng and Li, Wenjie. 2018. [Unpaired sentiment-to-sentiment translation: A cycled reinforcement learning approach](https://www.aclweb.org/anthology/P18-1090). In *Proceedings of ACL 2018*. [[code](https://github.com/lancopku/unpaired-sentiment-translation)] ([Citation](https://scholar.google.com.hk/scholar?cites=14501351265800361600&as_sdt=2005&sciodt=0,5&hl=en): 21) 167 | * Santos, Cicero Nogueira dos and Melnyk, Igor and Padhi, Inkit. 2018. [Fighting offensive language on social media with unsupervised text style transfer](https://www.aclweb.org/anthology/P18-2031). In *Proceedings of ACL 2018*. ([Citation](https://scholar.google.com.hk/scholar?cites=2210048976046793442&as_sdt=2005&sciodt=0,5&hl=en): 9) 168 | * Yang, Zichao and Hu, Zhiying and Dyer, Chris and Xing, Eric P. and Berg-Kirkpatrick, Taylor. 2018. [Unsupervised Text Style Transfer using Language Models as Discriminators](https://papers.nips.cc/paper/7959-unsupervised-text-style-transfer-using-language-models-as-discriminators.pdf). In *Proceedings of NeurIPS 2018*. ([Citation](https://scholar.google.com.hk/scholar?cites=488841870167588176&as_sdt=2005&sciodt=0,5&hl=en): 31) 169 | * Zhang, Zhirui and Ren, Shuo and Liu, Shujie and Wang, Jianyong and Chen, Peng and Li, Mu and Zhou, Ming and Chen, Enhong. 2018. [Style Transfer as Unsupervised Machine Translation](https://arxiv.org/pdf/1808.07894). *arXiv preprint arXiv:1808.07894*. ([Citation](https://scholar.google.com.hk/scholar?cites=1955701347518044479&as_sdt=2005&sciodt=0,5&hl=en): 5) 170 | * Gong, Hongyu and Bhat, Suma and Wu, Lingfei and Xiong, Jinjun and Hwu, Wen-mei. 2019. [Reinforcement Learning Based Text Style Transfer without Parallel Training Corpus](https://www.aclweb.org/anthology/N19-1320). In *Proceedings of NAACL-HLT 2019*. ([Citation](https://scholar.google.com.hk/scholar?cites=4008944923987714295&as_sdt=2005&sciodt=0,5&hl=en): 1) 171 | * Luo, Fuli and Li, Peng and Zhou, Jie and Yang, Pengcheng and Chang, Baobao and Sui, Zhifang and Sun, Xu. 2019. [A Dual Reinforcement Learning Framework for Unsupervised Text Style Transfer](https://arxiv.org/pdf/1905.10060). In *Proceedings of IJCAI 2019*. [[code](https://github.com/luofuli/DualRL)] ([Citation](https://scholar.google.com.hk/scholar?cites=3399351837013788481&as_sdt=2005&sciodt=0,5&hl=en): 3) 172 | * Lee, Joseph and Xie, Ziang and Wang, Cindy and Drach, Max and Jurafsky, Dan and Ng, Andrew Y. 2019. [Neural Text Style Transfer via Denoising and Reranking](https://www.aclweb.org/anthology/W19-2309). In *Proceedings of ACL 2019 Workshop*. 173 | * Tian, Youzhi and Hu, Zhiting and Yu, Zhou, 2018.[Structured Content Preservation for Unsupervised Text Style Transfer](https://arxiv.org/pdf/1810.06526.pdf). *arXiv preprint arXiv:1810.06526*. [[code](https://github.com/YouzhiTian/Structured-Content-Preservation-for-Unsupervised-Text-Style-Transfer)] ([Citation](https://scholar.google.com.hk/scholar?cites=11482628433107496292&as_sdt=2005&sciodt=0,5&hl=zh-CN): 2) 174 | * Fu, Zhenxin and Tan, Xiaoye and Peng, Nanyun and Zhao, Dongyan and Yan, Rui. 2018. [Style Transfer in Text: Exploration and Evaluation](https://www.aaai.org/ocs/index.php/AAAI/AAAI18/paper/viewFile/17015/15745). In *Proceedings of AAAI 2018*. [[code](https://github.com/fuzhenxin/text_style_transfer)] ([Citation](https://scholar.google.com.hk/scholar?cites=9103690709456613215&as_sdt=2005&sciodt=0,5&hl=zh-CN): 69) 175 | * Jin, Zhijing and Jin, Di and Jonas, Mueller and Nicholas Matthews and Enrico Santus. 2019. [IMaT: Unsupervised Text Attribute Transfer via Iterative Matching and Translation](https://arxiv.org/pdf/1901.11333.pdf). *Proceedings of EMNLP 2019*. [[code]( https://github.com/zhijing-jin/IMT)] ([Citation](https://scholar.google.com.hk/scholar?cites=13989233818887797462&as_sdt=2005&sciodt=0,5&hl=zh-CN): 1) 176 | * Guillaume Lample, Sandeep Subramanian, Eric Smith, Ludovic Denoyer, Marc'Aurelio Ranzato, Y-Lan Boureau. 2019. [Multiple-Attribute Text Style Transfer(Rewriting)](https://openreview.net/pdf?id=H1g2NhC5KQ). *Proceedings of ICLR 2019*. ([Citation](https://scholar.google.com.hk/scholar?cites=9470659499240433770&as_sdt=2005&sciodt=0,5&hl=zh-CN): 5) 177 | * Ruochen Xu, Tao Ge, Furu Wei. 2019. [Formality Style Transfer with Hybrid Textual Annotations](https://arxiv.org/pdf/1903.06353.pdf). *arXiv preprint arXiv:1903.06353*. 178 | * Vineet John, Lili Mou, Hareesh Bahuleyan, Olga Vechtomova. 2018. [Disentangled Representation Learning for Non-Parallel Text Style Transfer](https://arxiv.org/pdf/1808.04339.pdf). *arXiv preprint arXiv:1808.04339*. [[code]( https://github.com/vineetjohn/linguistic-style-transfer)] ([Citation](https://scholar.google.com.hk/scholar?cites=9121025177635026925&as_sdt=2005&sciodt=0,5&hl=zh-CN): 9) 179 | * Zhao, Yanoeng and Bi, Wei and Cai, Deng and Liu Xiaojiang and Tu, Kewei and Shi, Shuming. 2018. [Language Style Transfer from Sentences with Arbitrary Unknown Styles](https://arxiv.org/pdf/1808.04071.pdf). *arXiv preprint arXiv:1808.04071*. ([Citation](https://scholar.google.com.hk/scholar?cites=3245751791305360380&as_sdt=2005&sciodt=0,5&hl=zh-CN): 2) 180 | * Yuanzhe Pang and Kevin Gimpel. 2018. [Learning Criteria and Evaluation Metrics for Textual Transfer between Non-Parallel Corpora](https://arxiv.org/pdf/1810.11878.pdf). *arXiv preprint arXiv:1810.11878*. 181 | * Jonas Mueller, David Gifford, Tommi Jaakkola. 2017. [Sequence to Better Sequence: Continuous Revision of Combinatorial Structures](http://proceedings.mlr.press/v70/mueller17a/mueller17a.pdf). In *Proceedings of ICML 2017*. ([Citation](https://scholar.google.com.hk/scholar?cites=4687027610989448483&as_sdt=2005&sciodt=0,5&hl=zh-CN): 36) 182 | * Alexey Romanov, Anna Rumshisky, Anna Rogers and David Donahue. 2019. [Adversarial Decomposition of Text Representation](https://arxiv.org/pdf/1808.09042.pdf). In *Proceedings of NAACL 2019*. 183 | * Remi Mir, Bjarke Felbo, Nick Obradovich, Iyad Rahwan. 2019. [Evaluating Style Transfer for Text](https://arxiv.org/pdf/1904.02295.pdf). In *Proceedings of NAACL 2019*. 184 | * Ning Dai, Jianze Liang, Xipeng Qiu, Xuanjing Huang. 2019. [Style Transformer: Unpaired Text Style Transfer without Disentangled Latent Representation](https://arxiv.org/pdf/1905.05621.pdf). In *Proceedings of ACL 2019*. [[code]( https://github.com/fastnlp/fastNLP)] 185 | * Chen Wu, Xuancheng Ren, Fuli Luo, Xu Sun. 2019. [A Hierarchical Reinforced Sequence Operation Method for Unsupervised Text Style Transfer](https://arxiv.org/pdf/1906.01833.pdf). In *Proceedings of ACL 2019*. [[code]( https://github.com/ChenWu98/Point-Then-Operate)] 186 | * Sudhakar, Akhilesh and Upadhyay, Bhargav and Maheswaran, Arjun. 2019. [Transforming Delete, Retrieve, Generate Approach for Controlled Text Style Transfer](https://arxiv.org/pdf/1908.09368v1). In *Proceedings of EMNLP 2019*. [[code](https://github.com/agaralabs/transformer-drg-styletransfer)] 187 | -------------------------------------------------------------------------------- /bib_citation/GANs_methods.bib: -------------------------------------------------------------------------------- 1 | @Article{kusner:arxiv16, 2 | title = {GANS for Sequences of Discrete Elements with the Gumbel-softmax Distribution}, 3 | author = {Kusner, Matt J and Hern{\'a}ndez-Lobato, Jos{\'e} Miguel}, 4 | journal = {arXiv preprint arXiv:1611.04051}, 5 | year = {2016} 6 | } 7 | 8 | @InProceedings{gulrajani:nips17, 9 | title = {Improved Training of Wasserstein GANs}, 10 | author = {Gulrajani, Ishaan and Ahmed, Faruk and Arjovsky, Martin and Dumoulin, Vincent and Courville, Aaron Courville}, 11 | booktitle = {Proceedings of NeurIPS 2017}, 12 | year = {2017} 13 | } 14 | 15 | @InProceedings{yu:aaai17, 16 | title = {SeqGAN: Sequence Generative Adversarial Nets with Policy Gradient}, 17 | author = {Yu, Lantao and Zhang, Weinan and Wang, Jun and Yu, Yong}, 18 | booktitle = {Proceedings of AAAI 2017}, 19 | year = {2017} 20 | } 21 | 22 | @InProceedings{liang:ieee17, 23 | title = {Recurrent Topic-Transition GAN for Visual Paragraph Generation}, 24 | author = {Liang, Xiaodan and Hu, Zhiting and Zhang, Hao and Gan, Chuang and Xing, Eric P.}, 25 | booktitle = {Proceedings of IEEE 2017}, 26 | year = {2017} 27 | } 28 | 29 | @InProceedings{zhang:icml17, 30 | title = {Adversarial Feature Matching for Text Generation}, 31 | author = {Zhang, Yizhe and Gan, Zhe and Fan, Kai and Chen, Zhi and Henao, Ricardo and Shen, Dinghan and Carin, Lawrence}, 32 | booktitle = {Proceedings of ICML 2017}, 33 | year = {2017} 34 | } 35 | 36 | @InProceedings{guo:aaai18, 37 | title = {Long Text Generation via Adversarial Training with Leaked Information}, 38 | author = {Guo, Jiaxian and Lu, Sidi and Cai, Han and Zhang, Weinan and Yu, Yong and Wang, Jun}, 39 | booktitle = {Proceedings of AAAI 2018}, 40 | year = {2018} 41 | } 42 | 43 | @InProceedings{xu:emnlp18, 44 | title = {Diversity-Promoting GAN: A Cross-Entropy Based Generative Adversarial Network for Diversified Text Generation}, 45 | author = {Xu, Jingjing and Ren, Xuancheng and Lin, Junyang and Sun, Xu}, 46 | booktitle = {Proceedings of EMNLP 2018}, 47 | year = {2018} 48 | } 49 | 50 | @InProceedings{mroueh:iclr18, 51 | title = {Sobolev GAN}, 52 | author = {Mroueh, Youssef and Li, Chun-Liang and Sercu, Tom and Raj, Anant and Cheng, Yu}, 53 | booktitle = {Proceedings of ICLR 2018}, 54 | year = {2018} 55 | } 56 | 57 | @InProceedings{fedus:iclr18, 58 | title = {MaskGAN: Better Text Generation via Filling in the_}, 59 | author = {Fedus, William and Goodfellow, Ian and Dai, Andrew M.}, 60 | booktitle = {Proceedings of ICLR 2018}, 61 | year = {2018} 62 | } 63 | 64 | @InProceedings{li:aaai19, 65 | title = {Differentiated Distribution Recovery for Neural Text Generation}, 66 | author = {Li, Jianing and Lan, Yanyan and Guo, Jiafeng and Xu, Jun and Cheng, Xueqi}, 67 | booktitle = {Proceedings of AAAI 2019}, 68 | year = {2019} 69 | } 70 | 71 | @InProceedings{nie:iclr19, 72 | title = {RelGAN: Relational Generative Adversarial Networks for Text Generation}, 73 | author = {Nie, Weili and Narodytska, Nina and Patel, Ankit}, 74 | booktitle = {Proceedings of ICLR 2019}, 75 | year = {2019} 76 | } 77 | 78 | @InProceedings{chen:acl19, 79 | title = {Adversarial Domain Adaptation Using Artificial Titles for Abstractive Title Generation}, 80 | author = {Chen, Francine and Chen, Yan-Ying}, 81 | booktitle = {Proceedings of ACL 2019}, 82 | year = {2019} 83 | } 84 | 85 | @InProceedings{ke:emnlp19, 86 | title = {{ARAML}: A Stable Adversarial Training Framework for Text Generation}, 87 | author = {Ke, Pei and Huang, Fei and Huang, Minlie and Zhu, Xiaoyan}, 88 | booktitle = {Proceedings of EMNLP 2019}, 89 | year = {2019} 90 | } 91 | -------------------------------------------------------------------------------- /bib_citation/Knowledge_methods.bib: -------------------------------------------------------------------------------- 1 | @InProceedings{liu:aaai02, 2 | title = {MAKEBELIEVE: Using Commonsense Knowledge to Generate Stories}, 3 | author = {Liu, Hugo and Singh, Push}, 4 | booktitle = {Proceedings of AAAI 2002}, 5 | year = {2002} 6 | } 7 | 8 | @InProceedings{yang:acl17, 9 | title = {Leveraging Knowledge Bases in LSTMs for Improving Machine Reading}, 10 | author = {Yang, Bishan and Mitchell, Tom}, 11 | booktitle = {Proceedings of ACL 2017}, 12 | year = {2017} 13 | } 14 | 15 | @InProceedings{ghazvininejad:aaai18, 16 | title = {A Knowledge-Grounded Neural Conversation Model}, 17 | author = {Ghazvininejad, Marjan and Brockett, Chris and Chang, Ming-Wei and Dolan, Bill and Gao, Jianfeng and Yih, Wen-tau and Galley, Michel}, 18 | booktitle = {Proceedings of AAAI 2018}, 19 | year = {2018} 20 | } 21 | 22 | @InProceedings{li:coling18, 23 | title = {A Multi-Attention Based Neural Network with External Knowledge for Story Ending Predicting Task}, 24 | author = {Li, Qian and Li, Ziwei and Wei, Jin-Mao and Gu, Yanhui and Jatowt, Adam and Yang, Zhenglu}, 25 | booktitle = {Proceedings of COLING 2018}, 26 | year = {2018} 27 | } 28 | 29 | @InProceedings{guan:aaai19, 30 | title = {Story Ending Generation with Incremental Encoding and Commonsense Knowledge}, 31 | author = {Guan, Jian and Wang, Yansen and Huang, Minlie}, 32 | booktitle = {Proceedings of AAAI 2019}, 33 | year = {2019} 34 | } 35 | 36 | @InProceedings{chen:aaai19, 37 | title = {Incorporating Structured Commonsense Knowledge in Story Completion}, 38 | author = {Chen, Jiaao and Chen, Jianshu and Yu, Zhou}, 39 | booktitle = {Proceedings of AAAI 2019}, 40 | year = {2019} 41 | } 42 | 43 | @InProceedings{shang:aaai19, 44 | title = {Find a Reasonable Ending for Stories: Does Logic Relation Help the Story Cloze Test?}, 45 | author = {Shang, Mingyue and Fu, Zhenxin and Yin, Hongzhi and Tang, Bo and Zhao, Dongyan and Yan, Rui}, 46 | booktitle = {Proceedings of AAAI 2019}, 47 | year = {2019} 48 | } 49 | 50 | @InProceedings{li:aaai19, 51 | title = {Knowledge-Driven Encode, Retrieve, Paraphrase for Medical Image Report Generation}, 52 | author = {Li, Christy Y. and Liang, Xiaodan and Hu, Zhiting and Xing, Eric P.}, 53 | booktitle = {Proceedings of AAAI 2019}, 54 | year = {2019} 55 | } 56 | 57 | @InProceedings{koncel-kedziorshi:naacl19, 58 | title = {Text Generation from Knowledge Graphs with Graph Transformers}, 59 | author = {Koncel-Kedziorshi, Rik and Bekal, Dhanush and Luan, Yi and Lapata, Mirella and Hajishirzi, Hannaneh}, 60 | booktitle = {Proceedings of NAACL-HLT 2019}, 61 | year = {2019} 62 | } 63 | 64 | @InProceedings{valerie:naacl19, 65 | title = {Neural Text Generation from Rich Semantic Representations}, 66 | author = {Valerie, Hajdik and Jan, Buys and Michael W., Goodman and Emily M., Bender}, 67 | booktitle = {Proceedings of NAACL-HLT 2019}, 68 | year = {2019} 69 | } 70 | 71 | @InProceedings{yang:ijcai19, 72 | title = {Knowledgeable Storyteller: A Commonsense-Driven Generative Model for Visual Storytelling}, 73 | author = {Yang, Pengcheng and Luo, Fuli and Chen, Peng and Li, Lei and Chang, Baobao and Sui, Zhifang and Sun, Xu}, 74 | booktitle = {Proceedings of IJCAI 2019}, 75 | year = {2019} 76 | } 77 | 78 | @InProceedings{yang:acl19, 79 | title = {Enhancing Topic-to-Essay Generation with External Commonsense Knowledge}, 80 | author = {Yang, Pengcheng and Li, Lei and Luo, Fuli and Liu, Tianyu and Sun, Xu}, 81 | booktitle = {Proceedings of ACL 2019}, 82 | year = {2019} 83 | } 84 | -------------------------------------------------------------------------------- /bib_citation/RL_methods.bib: -------------------------------------------------------------------------------- 1 | @InProceedings{lin:nips17, 2 | title = {Adversarial Ranking for Language Generation}, 3 | author = {Lin, Kevin and Li, Dianqi and He, Xiaodong and Zhang, Zhengyou and Sun, Ming-Ting}, 4 | booktitle = {Proceedings of NeurIPS 2017}, 5 | year = {2017} 6 | } 7 | 8 | @Article{che:arxiv17, 9 | title = {Maximum-Likelihood Augmented Discrete Generative Adversarial Networks}, 10 | author = {Che, Tong and Li, Yanran and Zhang, Ruixiang and Hjelm, R Devon and Li, Wenjie and Song, Yangqiu and Bengio, Yoshua}, 11 | booktitle = {arXiv preprint arXiv:1702.07983}, 12 | year = {2017} 13 | } 14 | 15 | @InProceedings{xu:emnlp18, 16 | title = {A Skeleton-Based Model for Promoting Coherence Among Sentences in Narrative Story Generation}, 17 | author = {Xu, Jingjing and Zhang, Yi and Zeng, Qi and Ren, Xuancheng and Cai, Xiaoyan and Sun, Xu}, 18 | booktitle = {Proceedings of NMNLP 2018}, 19 | year = {2018} 20 | } 21 | 22 | @InProceedings{wang:acl18, 23 | title = {No Metrics Are Prefect: Adversarial Reward Learning for Visual Storytelling}, 24 | author = {Wang, Xin and Chen, Wenhu and Wang, Yuan-Fang and Wang, William Yang}, 25 | booktitle = {Proceedings of ACL 2018}, 26 | year = {2018} 27 | } 28 | 29 | @InProceedings{hjelm:iclr17, 30 | title = {Boundary-Seeking Generative Adversarial Networks}, 31 | author = {Hjelm, R Devon and Jacob, Athul Paul and Che, Tong and Trischler, Adam and Cho, Kyunghyun and Bengio, Yoshua}, 32 | booktitle = {Proceedings of ICLR 2018}, 33 | year = {2018} 34 | } 35 | 36 | @InProceedings{shi:ijcai18, 37 | title = {Towards Diverse Text Generation with Inverse Reinforcement Learning}, 38 | author = {Shi, Zhan and Chen, Xinchi and Qiu, Xipeng and Huang, Xuanjing}, 39 | booktitle = {Proceedings of IJCAI 2018}, 40 | year = {2018} 41 | } 42 | 43 | @InProceedings{subramanian:ijcai18, 44 | title = {Towards Text Generation with Adversarially Learned Neural Outlines}, 45 | author = {Subramanian, Sandeep and Mudumba, Sai Rajeswar and Sordoni, Alessandro and Trischler, Adam and Courville, Aaron C and Pal, Chris}, 46 | booktitle = {Proceedings of NeurIPS 2018}, 47 | year = {2018} 48 | } 49 | 50 | @InProceedings{huang:aaai19, 51 | title = {Hierarchically Structured Reinforcement Learning for Topically Coherent Visual Story Generation}, 52 | author = {Huang, Qiuyuan and Gan, Zhe and Celikyilmaz, Asli and Wu, Dapeng and Wang, Jianfeng and He, Xiaodong}, 53 | booktitle = {Proceedings of AAAI 2019}, 54 | year = {2019} 55 | } 56 | 57 | @InProceedings{kazuma:naacl19, 58 | title = {Accelerated Reinforcement Learning for Sentence Generation by Vocabulary Prediction}, 59 | author = {Kazuma, Hashimoto and Yoshimasa, Tsuruoka}, 60 | booktitle = {Proceedings of NAACL-HLT 2019}, 61 | year = {2019} 62 | } 63 | 64 | @InProceedings{chan:acl19, 65 | title = {Neural Keyphrase Generation via Reinforcement Learning with Adaptive Rewards}, 66 | author = {Chan, Hou Pong and Chen, Wang and Wang, Lu and King, Irwin}, 67 | booktitle = {Proceedings of ACL 2019}, 68 | year = {2019} 69 | } 70 | -------------------------------------------------------------------------------- /bib_citation/Style_transfer.bib: -------------------------------------------------------------------------------- 1 | @InProceedings{hu:icml17, 2 | title = {Toward Controlled Generation of Text}, 3 | author = {Hu, Zhiting and Yang, Zichao and Liang, Xiaodan and Salakhutdinov, Ruslan and Xing, Eric P.}, 4 | booktitle = {Proceedings of ICML 2017}, 5 | year = {2017} 6 | } 7 | 8 | @InProceedings{shen:nips17, 9 | title = {Style Transfer from Non-Parallel Text by Cross-Alignment}, 10 | author = {Shen, Tianxiao and Lei, Tao and Barzilay, Regina and Jaakkola, Tommi}, 11 | booktitle = {Proceedings of NeurIPS 2017}, 12 | year = {2017} 13 | } 14 | 15 | @InProceedings{han:nlpcc17, 16 | title = {Unsupervised Automatic Text Style Transfer using LSTM}, 17 | author = {Han, Mengqiao and Wu, Ou and Niu, Zhendong}, 18 | booktitle = {Proceedings of NLPCC 2017}, 19 | year = {2017} 20 | } 21 | 22 | @InProceedings{li:naacl18, 23 | title = {Delete, retrieve, generate: A simple approach to sentiment and style transfer}, 24 | author = {Li, Juncen and Jia, Robin and He, He and Liang, Percy}, 25 | booktitle = {Proceedings of NAACL-HLT 2018}, 26 | year = {2018} 27 | } 28 | 29 | @InProceedings{zhang:naacl18, 30 | title = {SHAPED: Shared-Private Encoder-Decoder for Text Style Adaptation}, 31 | author = {Zhang, Ye and Ding, Nan and Soricut, Radu}, 32 | booktitle = {Proceedings of NAACL-HLT 2018}, 33 | year = {2018} 34 | } 35 | 36 | @InProceedings{prabhumoye:acl18, 37 | title = {Style Transfer Through Back-Translation}, 38 | author = {Prabhumoye, Shrimai and Tsvetkov, Yulia and Salakhutdinov, Ruslan and Black, Alan W}, 39 | booktitle = {Proceedings of ACL 2018}, 40 | year = {2018} 41 | } 42 | 43 | @InProceedings{xu:acl18, 44 | title = {Unpaired sentiment-to-sentiment translation: A cycled reinforcement learning approach}, 45 | author = {Xu, Jingjing and Sun, Xu and Zeng, Qi and Ren, Xuancheng and Zhang, Xiaodong and Wang, Houfeng and Li, Wenjie}, 46 | booktitle = {Proceedings of ACL 2018}, 47 | year = {2018} 48 | } 49 | 50 | @InProceedings{santos:acl18, 51 | title = {Fighting offensive language on social media with unsupervised text style transfer}, 52 | author = {Santos, Cicero Nogueira dos and Melnyk, Igor and Padhi, Inkit}, 53 | booktitle = {Proceedings of ACL 2018}, 54 | year = {2018} 55 | } 56 | 57 | @InProceedings{yang:nips18, 58 | title = {Unsupervised Text Style Transfer using Language Models as Discriminators}, 59 | author = {Yang, Zichao and Hu, Zhiying and Dyer, Chris and Xing, Eric P. and Berg-Kirkpatrick, Taylor}, 60 | booktitle = {Proceedings of NeurIPS 2018}, 61 | year = {2018} 62 | } 63 | 64 | @InProceedings{valerie:naacl19, 65 | title = {Neural Text Generation from Rich Semantic Representations}, 66 | author = {Valerie, Hajdik and Jan, Buys and Michael W., Goodman and Emily M., Bender}, 67 | booktitle = {Proceedings of NAACL-HLT 2019}, 68 | year = {2019} 69 | } 70 | 71 | @InProceedings{gong:naacl19, 72 | title = {Reinforcement Learning Based Text Style Transfer without Parallel Training Corpus}, 73 | author = {Gong, Hongyu and Bhat, Suma and Wu, Lingfei and Xiong, Jinjun and Hwu, Wen-mei}, 74 | journal = {Proceedings of NAACL-HLT 2019}, 75 | year = {2019} 76 | } 77 | 78 | @InProceedings{luo:ijcai19, 79 | title = {A Dual Reinforcement Learning Framework for Unsupervised Text Style Transfer}, 80 | author = {Luo, Fuli and Li, Peng and Zhou, Jie and Yang, Pengcheng and Chang, Baobao and Sui, Zhifang and Sun, Xu}, 81 | booktitle = {Proceedings of IJCAI 2019}, 82 | year = {2019} 83 | } 84 | 85 | @InProceedings{lee:acl19, 86 | title = {Neural Text Style Transfer via Denoising and Reranking}, 87 | author = {Lee, Joseph and Xie, Ziang and Wang, Cindy and Drach, Max and Jurafsky, Dan and Ng, Andrew Y}, 88 | booktitle = {Proceedings of ACL 2019 Workshop}, 89 | year = {2019} 90 | } 91 | 92 | @Article{tian:arxiv18, 93 | title = {Structured Content Preservation for Unsupervised Text Style Transfer}, 94 | author = {Tian, Youzhi and Hu, Zhiting and Yu, Zhou}, 95 | journal = {arXiv preprint arXiv:1810.06526}, 96 | year = {2018} 97 | } 98 | 99 | @InProceedings{fu:aaai18, 100 | title = {Style Transfer in Text: Exploration and Evaluation}, 101 | author = {Fu, Zhenxin and Tan, Xiaoye and Peng, Nanyun and Zhao, Dongyan and Yan, Rui}, 102 | booktitle = {Proceedings of AAAI 2018}, 103 | year = {2018} 104 | } 105 | 106 | @InProceedings{jin:emnlp2019, 107 | title = {IMaT: Unsupervised Text Attribute Transfer via Iterative Matching and Translation}, 108 | author = {Jin, Zhijing and Jin, Di and Jonas, Mueller and Nicholas Matthews and Enrico Santus}, 109 | booktitle = {Proceedings of EMNLP 2019}, 110 | year = {2019} 111 | } 112 | 113 | @InProceedings{lample:iclr2019, 114 | title = {Multiple-Attribute Text Style Transfer}, 115 | author = {Lample, Guillaume and Subramanian, Sandeep and Smith, Eric and Denoyer, Ludovic and Ranzato, Marc'Aurelio and Boureaus, Y-Lan}, 116 | booktitle = {Proceedings of ICLR 2019}, 117 | year = {2019} 118 | } 119 | 120 | @Article{xu:arxiv2019, 121 | title = {Formality Style Transfer with Hybrid Textual Annotations}, 122 | author = {Xu, Ruochen and Ge, Tao and Wei, Furu}, 123 | journal = {arXiv preprint arXiv:1903.06353}, 124 | year = {2019} 125 | } 126 | 127 | @Article{john:arxiv2018, 128 | title = {Disentangled Representation Learning for Non-Parallel Text Style Transfer}, 129 | author = {John, Vineet and Mou, Lili and Bahuleyan, Hareesh and Vechtomova, Olga}, 130 | journal = {arXiv preprint arXiv:1808.04339}, 131 | year = {2018} 132 | } 133 | 134 | @Article{zhao:arxiv2018, 135 | title = {Language Style Transfer from Sentences with Arbitrary Unknown Styles}, 136 | author = {Zhao, Yanoeng and Bi, Wei and Cai, Deng and Liu Xiaojiang and Tu, Kewei and Shi, Shuming}, 137 | journal = {arXiv preprint arXiv:1808.04071}, 138 | year = {2018} 139 | } 140 | 141 | @Article{pang:arxiv2018, 142 | title = {Learning Criteria and Evaluation Metrics for Textual Transfer between Non-Parallel Corpora}, 143 | author = {Pang, Yuanzhe and Gimpel, Kevin}, 144 | journal = {arXiv preprint arXiv:1810.11878}, 145 | year = {2018} 146 | } 147 | 148 | @InProceedings{mueller:icml2017, 149 | title = {Sequence to Better Sequence: Continuous Revision of Combinatorial Structures}, 150 | author = {Mueller, Jonas and Gifford, David and Jaakkola, Tommi}, 151 | booktitle = {Proceedings of ICML 2017}, 152 | year = {2017} 153 | } 154 | 155 | @InProceedings{romanov:naacl2019, 156 | title = {Adversarial Decomposition of Text Representation}, 157 | author = {Romanov, Alexey and Rumshisky, Anna and Rogers, Anna and Donahue, David}, 158 | booktitle = {Proceedings of NAACL 2019}, 159 | year = {2019} 160 | } 161 | 162 | @InProceedings{mir:naacl2019, 163 | title = {Evaluating Style Transfer for Text}, 164 | author = {Mir, Remi and Felbo, Bjarke and Obradovich, Nick and Rahwan, Iyad}, 165 | booktitle = {Proceedings of NAACL 2019}, 166 | year = {2019} 167 | } 168 | 169 | @InProceedings{dai:acl2019, 170 | title = {Style Transformer: Unpaired Text Style Transfer without Disentangled Latent Representation}, 171 | author = {Dai, Ning and Liang, Jianze and Qiu, Xipeng and Huang, Xuanjing}, 172 | booktitle = {Proceedings of ACL 2019}, 173 | year = {2019} 174 | } 175 | 176 | @InProceedings{wu:acl2019, 177 | title = {A Hierarchical Reinforced Sequence Operation Method for Unsupervised Text Style Transfer}, 178 | author = {Wu, Chen and Ren, Xuancheng and Luo, Fuli and Sun, Xu}, 179 | booktitle = {Proceedings of ACL 2019}, 180 | year = {2019} 181 | } 182 | 183 | @InProceedings{sudhakar:emnlp19, 184 | title = {Transforming Delete, Retrieve, Generate Approach for Controlled Text Style Transfer}, 185 | author = {Sudhakar, Akhilesh and Upadhyay, Bhargav and Maheswaran, Arjun}, 186 | booktitle = {Proceedings of EMNLP 2019}, 187 | year = {2019} 188 | } 189 | -------------------------------------------------------------------------------- /bib_citation/VAE_methods.bib: -------------------------------------------------------------------------------- 1 | @InProceedings{li:acl15, 2 | title = {Fan, Angela and Lewis, Mike and Dauphin, Yann. 2019}, 3 | author = {Li, Jiwei and Luong, Thang and Jurafsky, Dan}, 4 | booktitle = {Proceedings of ACL 2015}, 5 | year = {2015} 6 | } 7 | 8 | @InProceedings{semeniuta:emnlp17, 9 | title = {A Hybrid Convolutional Variational Autoencoder for Text Generation}, 10 | author = {Semeniuta, Stanislau and Severyn, Aliaksei and Barth, Erhardt}, 11 | booktitle = {Proceedings of EMNLP 2017}, 12 | year = {2017} 13 | } 14 | 15 | @InProceedings{serban:emnlp17, 16 | title = {Piecewise Latent Variables for Neural Variational Text Processing}, 17 | author = {Serban, Iulian Vlad and Ororbia II, Alexander and Pineau, Joelle and Courville, Aaron}, 18 | booktitle = {Proceedings of EMNLP 2017}, 19 | year = {2017} 20 | } 21 | 22 | @InProceedings{yang:icml17, 23 | title = {Improved Variational Autoencoders for Text Modeling using Dilated Convolutions}, 24 | author = {Yang, Zichao and Hu, Zhiting and Salakhutdinov, Ruslan and Berg-Kirkpatrick, Taylor}, 25 | booktitle = {Proceedings of ICML 2017}, 26 | year = {2017} 27 | } 28 | 29 | @InProceedings{hu:icml17, 30 | title = {Toward Controlled Generation of Text}, 31 | author = {Hu, Zhiting and Yang, Zichao and Liang, Xiaodan and Salakhutdinov, Ruslan and Xing, Eric P.}, 32 | booktitle = {Proceedings of ICML 2017}, 33 | year = {2017} 34 | } 35 | 36 | @InProceedings{deng:nips18, 37 | title = {Latent Alignment and Variational Attention}, 38 | author = {Deng, Yuntian and Kim, Yoon and Chiu, Justin and Guo, Demi and Rush, Alexander}, 39 | booktitle = {Proceedings of NeurIPS 2018}, 40 | year = {2018} 41 | } 42 | 43 | @InProceedings{kim:icml18, 44 | title = {Semi-Amortized Variational Autoencoders}, 45 | author = {Kim, Yoon and Wiseman, Sam and Miller, Andrew C and Sontag, David and Rush, Alexander M.}, 46 | booktitle = {Proceedings of ICML 2018}, 47 | year = {2018} 48 | } 49 | 50 | @InProceedings{bahuleyan:coling18, 51 | title = {Variational Attention for Sequence-to-Sequence Models}, 52 | author = {Bahuleyan, Hareesh and Mou, Lili and Vechtomova, Olga and Poupart, Pascal}, 53 | booktitle = {Proceedings of COLING 2018}, 54 | year = {2018} 55 | } 56 | 57 | @InProceedings{xu:emnlp18, 58 | title = {Spherical Latent Spaces for Stable Variational Autoencoders}, 59 | author = {Xu, Jiacheng and Durrett, Greg}, 60 | booktitle = {Proceedings of EMNLP 2018}, 61 | year = {2018} 62 | } 63 | 64 | @InProceedings{yoo:aaai19, 65 | title = {Data Augmentation for Spoken Language Understanding via Joint Variational Generation}, 66 | author = {Yoo, Kang Min and Shin, Youhyun and Lee, Sang-goo}, 67 | booktitle = {Proceedings of AAAI 2019}, 68 | year = {2019} 69 | } 70 | 71 | @InProceedings{wenlin:naacl19, 72 | title = {Topic-Guided Variational Auto-Encoder for Text Generation}, 73 | author = {Wenlin, Wang and Zhe, Gan and Hongteng, Xu and Ruiyi, Zhang and Guoyin, Wang and Dinghan, Shen and Changyou, Chen and Lawrence, Carin}, 74 | booktitle = {Proceedings of NAACL-HLT 2019}, 75 | year = {2019} 76 | } 77 | 78 | @InProceedings{bahuleyan:naacl19, 79 | title = {Probabilistic Natural Language Generation with Wasserstein Autoencoders}, 80 | author = {Bahuleyan, Hareesh and Mou, Lili and Vamaraju, Kartik and Zhou, Hao and Vechtomova, Olga}, 81 | booktitle = {Proceedings of NAACL-HLT 2019}, 82 | year = {2019} 83 | } 84 | 85 | @InProceedings{gu:iclr19, 86 | title = {DialogWAE: Multimodal Response Generation with Conditional Wasserstein Auto-Encoder}, 87 | author = {Gu, Xiaodong and Cho, Kyunghyun and Ha, Jung-Woo and Kim, Sunghun}, 88 | booktitle = {Proceedings of ICLR 2019}, 89 | year = {2019} 90 | } 91 | 92 | @InProceedings{shen:acl19, 93 | title = {Towards Generating Long and Coherent Text with Multi-Level Latent Variable Models}, 94 | author = {Shen, Dinghan and Celikyilmaz, Asli and Zhang, Yizhe and Chen, Liqun and Wang, Xin and Gao, Jianfeng and Carin, Lawrence}, 95 | booktitle = {Proceedings of ACL 2019}, 96 | year = {2019} 97 | } 98 | 99 | @InProceedings{shao:emnlp19, 100 | title = {Long and Diverse Text Generation with Planning-based Hierarchical Variational Model}, 101 | author = {Shao, Zhihong and Huang, Minlie and Wen, Jiangtao and Xu, Wenfei and Zhu, Xiaoyan}, 102 | booktitle = {Proceedings of EMNLP 2019}, 103 | year = {2019} 104 | } 105 | -------------------------------------------------------------------------------- /bib_citation/related_papers.bib: -------------------------------------------------------------------------------- 1 | @InProceedings{kingma:iclr14, 2 | title = {Aoto-Encoding Variational Bayes}, 3 | author = {Kingma, Diederik P and Welling, Max}, 4 | booktitle = {Proceedings of ICLR 2014}, 5 | year = {2014} 6 | } 7 | 8 | @InProceedings{sutskever:nips14, 9 | title = {Sequence to Sequence Learning with Neural Networks}, 10 | author = {Sutskever, Ilya and Vinyals, Oriol and Le, Quoc V.}, 11 | booktitle = {Proceedings of NeurIPS 2014}, 12 | year = {2014} 13 | } 14 | 15 | @InProceedings{goodfellow:nips14, 16 | title = {Generative Adversarial Nets}, 17 | author = {Goodfellow, Ian and Pouget-Abadie, Jean and Mirza, Mehdi and Xu, Bing and Warde-Farley, David and Ozair, Sherjil and Courville, Aaron and Bengio, Yoshua}, 18 | booktitle = {Proceedings of NeurIPS 2014}, 19 | year = {2014} 20 | } 21 | 22 | @InProceedings{bahdanau:iclr15, 23 | title = {Neural Machine Translation by Jointly Learning to Align and Translate}, 24 | author = {Bahdanau, Dzmitry and Cho, Kyunghyun and Bengio, Yoshua}, 25 | booktitle = {Proceedings of ICLR 2015}, 26 | year = {2015} 27 | } 28 | 29 | @InProceedings{vaswani:nips17, 30 | title = {Attention is All You Need}, 31 | author = {Vaswani, Ashish and Shazeer, Noam and Parmar, Niki and Uszkoreit, Jakob and Jones, Llion and Gomez, Aidan N. and Kaiser, Lukasz and Polosukhin, Illia}, 32 | booktitle = {Proceedings of NeurIPS 2017}, 33 | year = {2017} 34 | } 35 | 36 | @InProceedings{jacob:naacl19, 37 | title = {BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding}, 38 | author = {Jacob, Devlin and Ming-Wei, Chang and Kenton, Lee and Kristina, Toutanova}, 39 | booktitle = {Proceedings of NAACL-HLT 2019}, 40 | year = {2019} 41 | } 42 | -------------------------------------------------------------------------------- /bib_citation/seq2seq_methods.bib: -------------------------------------------------------------------------------- 1 | @InProceedings{huang:naacl16, 2 | title = {Visual Storytelling}, 3 | author = {Huang, Ting-Hao (Kenneth) and Ferraro, Francis and Mostafazadeh, Nasrin and Misra, Ishan and Agrawal, Aishwarya and Devlin, Jacob and Girshick, Ross and He, Xiaodong and Kohli, Pushmeet and Batra, Dhruv and Zitnick, C. Lawrence and Parikh, Devi and Vanderwende, Lucy and Galley, Michel and Mitchell, Margaret}, 4 | booktitle = {Proceedings of NAACL-HLT 2016}, 5 | year = {2016} 6 | } 7 | 8 | @InProceedings{roemmele:aaai16, 9 | title = {Writing Stories with Help from Recurrent Neural Networks}, 10 | author = {Roemmele, Melissa}, 11 | booktitle = {Proceedings of AAAI 2016}, 12 | year = {2016} 13 | } 14 | 15 | @InProceedings{jain:sigkdd17, 16 | title = {Story Generation from Sequence of Independent Short Descriptions}, 17 | author = {Jain, Parag and Agrawal, Priyanka and Mishra, Abhijit and Sukhwani, Mohak and Laha, Anirban and Sankaranarayanan, Karthik}, 18 | booktitle = {Proceedings of SIGKDD 2017 Workshop on Machine Learning for Creativity (ML4Creativity)}, 19 | year = {2017} 20 | } 21 | 22 | @InProceedings{liu:aaai18, 23 | title = {Table-to-text Generation by Structure-aware Seq2seq Learning}, 24 | author = {Liu, Tianyu and Wang, Kexiang and Sha, Lei and Chang, Baobao and Sui, Zhifang}, 25 | booktitle = {Proceedings of AAAI 2018}, 26 | year = {2018} 27 | } 28 | 29 | @InProceedings{fan:acl18, 30 | title = {Hierarchical Neural Story Generation}, 31 | author = {Fan, Angela and Lewis, Mike and Dauphin, Yann}, 32 | booktitle = {Proceedings of ACL 2018}, 33 | year = {2018} 34 | } 35 | 36 | @InProceedings{song:acl18, 37 | title = {A Graph-to-Sequence Model for AMR-to-Text Generation}, 38 | author = {Song, Linfeng and Zhang, Yue and Wang, Zhiguo and Gildea, Daniel}, 39 | booktitle = {Proceedings of ACL 2018}, 40 | year = {2018} 41 | } 42 | 43 | @InProceedings{clark:aaai18, 44 | title = {Event Representations for Automated Story Generation with Deep Neural Nets}, 45 | author = {Clark, Elizabeth and Ji, Yangfeng and Smith, Noah A.}, 46 | booktitle = {Proceedings of AAAI 2018}, 47 | year = {2018} 48 | } 49 | 50 | @InProceedings{wiseman:emnlp18, 51 | title = {Learning Neural Templates for Text Generation}, 52 | author = {Wiseman, Sam and Shieber, Stuart and Rush, Alexander}, 53 | booktitle = {Proceedings of EMNLP 2018}, 54 | year = {2018} 55 | } 56 | 57 | @InProceedings{chaturvedi:emnlp18, 58 | title = {Story Comprehension for Predicting What Happens Next}, 59 | author = {Chaturvedi, Snigdha and Peng, Haoruo and Roth, Dan}, 60 | booktitle = {Proceedings of EMNLP 2018}, 61 | year = {2018} 62 | } 63 | 64 | @InProceedings{zhang:acl18, 65 | title = {Sentence-State LSTM for Text Representation}, 66 | author = {Zhang, Yue and Liu, Qi and Song, Linfeng}, 67 | booktitle = {Proceedings of ACL 2018}, 68 | year = {2018} 69 | } 70 | 71 | @InProceedings{kezar:acl18, 72 | title = {Mixed Feelings: Natural Text Generation with Variable, Coexistent Affective Categories}, 73 | author = {Kezar, Lee}, 74 | booktitle = {Proceedings of ACL 2018}, 75 | year = {2018} 76 | } 77 | 78 | @InProceedings{welleck:icml19, 79 | title = {Non-Monotonic Sequential Text Generation}, 80 | author = {Welleck, Sean and Brantley, Kianté and Daumé III, Hal and Cho, Kyunghyun}, 81 | booktitle = {Proceedings of ICML 2019}, 82 | year = {2019} 83 | } 84 | 85 | @InProceedings{nikolaos:icml19, 86 | title = {Deep Residual Output Layers for Neural Language Generation}, 87 | author = {Nikolaos, Pappas and James, Henderson}, 88 | booktitle = {Proceedings of ICML 2019}, 89 | year = {2019} 90 | } 91 | 92 | @InProceedings{amit:naacl19, 93 | title = {Step-by-Step: Separating Planning from Realization in Neural Data to Text Generation}, 94 | author = {Amit, Moryossef and Yoav, Goldberg and Ido, Dagan}, 95 | booktitle = {Proceedings of NAACL-HLT 2019}, 96 | year = {2019} 97 | } 98 | 99 | @InProceedings{sheng:naacl19, 100 | title = {Pragmatically Informative Text Generation}, 101 | author = {Sheng, Shen and Daniel, Fried and Jacob, Andreas and Dan, Klein}, 102 | booktitle = {Proceedings of NAACL-HLT 2019}, 103 | year = {2019} 104 | } 105 | 106 | @InProceedings{fan:acl19, 107 | title = {Strategies for Structuring Story Generation}, 108 | author = {Fan, Angela and Lewis, Mike and Dauphin, Yann. 2019}, 109 | booktitle = {Proceedings of ACL 2019}, 110 | year = {2019} 111 | } 112 | 113 | @InProceedings{wang:emnlp19, 114 | title = {Denoising based Sequence-to-Sequence Pre-training for Text Generation}, 115 | author = {Wang, Liang and Zhao, Wei and Jia, Ruoyu and Li, Sujian and Liu, Jingming}, 116 | booktitle = {Proceedings of EMNLP 2019}, 117 | year = {2019} 118 | } 119 | --------------------------------------------------------------------------------