-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy paththesis.tex
executable file
·136 lines (110 loc) · 3.24 KB
/
thesis.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
\documentclass[12pt]{report}
\usepackage{suthesis}
%\documentstyle[12pt,suthesis]{report}
% -- Imports --
% (general libraries)
\usepackage{times,latexsym,amsfonts,amssymb,amsmath,graphicx,url,bbm,rotating}
\usepackage{enumitem,multirow,hhline,stmaryrd,bussproofs,mathtools,siunitx,arydshln}
\usepackage{booktabs,xcolor,csquotes,calligra}
% (custom libraries)
\usepackage{fitch}
\usepackage{amsmath}
% (inline references)
\usepackage{natbib}
% (tikz)
\usepackage{tikz}
\usepackage{tikz-dependency,pifont}
\usetikzlibrary{shapes.arrows,chains,positioning,automata,trees,calc}
\usetikzlibrary{patterns,matrix}
\usetikzlibrary{decorations.pathmorphing,decorations.markings}
% (print algorithms)
\usepackage[ruled,lined,linesnumbered]{algorithm2e}
% (custom)
\input std-macros.tex
\input macros.tex
% (paper compilation hacks)
\def\newcite#1{\citet{#1}}
\def\cite#1{\citep{#1}}
%\def\newcite#1{\textcite{#1}}
%\def\cite#1{\autocite{#1}}
\definecolor{darkblue}{rgb}{0.0,0.0,0.4}
% Common hyphenations
\hyphenation{Text-Runner}
\hyphenation{Verb-Ocean}
\newenvironment{tightitemize}%
{\begin{itemize}[topsep=0pt, partopsep=0pt] %
\setlength{\parskip}{0pt}%
}%
{\end{itemize}}
%\bibliographystyle{plainnat}
\usepackage{epigraph}
\renewcommand{\epigraphsize}{\normalsize}
\setlength{\epigraphwidth}{0.8\textwidth}
\newcommand{\bleu}{{{\sc Bleu}}\xspace}
\newcommand{\meteor}{{{\sc Meteor}}\xspace}
\newcommand{\camready}[1]{{{#1}}}
\newcommand{\eos}{{\it EOS}\xspace}
\newcommand{\sts}{{{\textsc{Seq2Seq}}}\xspace}
\newcommand{\dbleu}{{$\Delta${\sc Bleu}}\xspace}
\newcommand{\fix}{\marginpar{FIX}}
\newcommand{\new}{\marginpar{NEW}}
\newcommand{\MINUS}{}
\DeclareMathOperator{\softmax}{softmax}
\newcommand{\mmiBD}{{MMI-bidi}\xspace}
\newcommand{\mmiLM}{{MMI-antiLM}\xspace}
\usepackage{tabularx}
\usepackage{tabulary}
\usepackage{comment}
\usepackage{booktabs}
\newcommand{\mmiBDv}{{$(1-\lambda) \log p(y|s)+\lambda \log p(x|y)$}\xspace}
\newcommand{\mmiLMv}{{$\log p(y|x)-\lambda U(y)$}\xspace}
\newcommand{\Message}{{{\it message}}\xspace}
\newcommand{\Response}{{{\it response}}\xspace}
\newcommand{\ststab}{{{\it \sts}}\xspace}
\newcommand{\User}[1]{{{\it user{#1}}}\xspace}
% -- Document --
\begin{document}
% Title
\title{Teaching Machines to Converse}
\author{Jiwei Li}
\principaladviser{Dan Jurafsky}
\firstreader{Christopher G. Potts}
\secondreader{Emma Brunskill}
% Preface
\beforepreface
\input preface.tex
\input ack.tex
\afterpreface
\chapter{Introduction}
\label{intro}
\input{chapters/intro}
\chapter{Background}
\label{back}
\input{chapters/background}
% -- Sections --
% Introduction
% Bibliography
\chapter{Mutual Information to Avoid Generic Responses}
\label{mutual}
\input{chapters/MMI}
\chapter{Addressing the Speaker Consistency Issue}
\label{persona}
\input{chapters/Persona}
\chapter{Fostering Long-term Dialogue Success}
\label{RL}
\input{chapters/RL}
\chapter{Adversarial Learning for Dialogue Generation}
\label{adversarial}
\input{chapters/adversarial}
\chapter{Learning by Asking Questions}
\label{AQ}
\input{chapters/AQ}
\chapter{Dialogue Learning with Human-in-the-Loop}
\label{HITL}
\input{chapters/HITL}
\chapter{Conclusion and Future Work}
\label{conclusion}
\input{chapters/conclusion}
\bibliographystyle{acl}
\bibliography{ref}
\end{document}