-
Notifications
You must be signed in to change notification settings - Fork 2
/
slides.tex
134 lines (113 loc) · 3.88 KB
/
slides.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
% Created 2019-12-02 Mon 11:03
% Intended LaTeX compiler: pdflatex
\documentclass[11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{grffile}
\usepackage{longtable}
\usepackage{wrapfig}
\usepackage{rotating}
\usepackage[normalem]{ulem}
\usepackage{amsmath}
\usepackage{textcomp}
\usepackage{amssymb}
\usepackage{capt-of}
\usepackage{hyperref}
\author{Dhruv Dhamani}
\date{\today}
\title{Why my Project is pointless}
\hypersetup{
pdfauthor={Dhruv Dhamani},
pdftitle={Why my Project is pointless},
pdfkeywords={},
pdfsubject={},
pdfcreator={Emacs 26.3 (Org mode 9.3)},
pdflang={English}}
\begin{document}
\maketitle
\section{Intelligent Agent}
\label{sec:orgcdc4f13}
\begin{center}
\includegraphics[width=.9\linewidth]{./ia.png}
\end{center}
\section{An example.}
\label{sec:org526a7c3}
\begin{itemize}
\item Book a spot for three at Maid-Rite Sandwich Shop in Antigua and Barbuda. I'll
book a table for you at [\ldots{}]
\item Book a spot for three at Maid-Rite Sandwich Shop in Antigua and Barbuda. Which
place? [\ldots{}]
\item Book a spot for three at Maid-Rite Sandwich Shop in Antigua and Barbuda. I'll
book a table for [\ldots{}]
\end{itemize}
\section{An example.}
\label{sec:orgcf6e38d}
\begin{itemize}
\item Book a spot for three at Maid-Rite Sandwich Shop in Antigua and Barbuda. I'll
book a table for you at \uline{Maid-Rite Sandwich}
\item Book a spot for three at Maid-Rite Sandwich Shop in Antigua and Barbuda. Which
place? \uline{Maid-Rite Sandwich}
\item Book a spot for three at Maid-Rite Sandwich Shop in Antigua and Barbuda. I'll
book a table for \uline{three}
\end{itemize}
\section{RoBERTa}
\label{sec:org491ad61}
RoBERTa iterates on BERT's pretraining procedure, including training the model longer, with bigger batches over more data; removing the next sentence prediction objective; training on longer sequences; and dynamically changing the masking pattern applied to the training data.
\section{RoBERTa}
\label{sec:org8edc141}
\begin{itemize}
\item Bi-directional masked language model.
\end{itemize}
\section{What I intended to do -}
\label{sec:orgae2a165}
\begin{itemize}
\item Book a spot for three at Eve's Pizzeria. Which place? \texttt{<mask>}
\end{itemize}
\section{What I intended to do -}
\label{sec:org7a027fc}
\begin{itemize}
\item Book a spot for three at Eve's Pizzeria. Which place? \texttt{<mask>}
\item Book a spot for three at Eve's Pizzeria. Which place? Eve's \texttt{<mask>}
\item Book a spot for three at Eve's Pizzeria. Which place? Eve's Pizzeria
\end{itemize}
\section{What actually happens -}
\label{sec:org5b1a3ca}
\begin{itemize}
\item <s> Book a spot for three at Eve's Pizzeria. Which place? </s>
\end{itemize}
\section{What actually happens -}
\label{sec:org53f04c3}
\begin{itemize}
\item <s> Book a spot for three at Eve's Pizzeria. Which place? Eve's </s></s>
\item <s> Book a spot for three at Eve's Pizzeria. Which place? Eve's </s></s></s></s></s></s></s></s>
\end{itemize}
\section{How to get it to work -}
\label{sec:orgaf19293}
\begin{itemize}
\item Don't use a birdirectional masked language model.
\item Examples of GPT2, a uni-directional transformer model trained for the same
task -
\begin{itemize}
\item add artist to All Out 70s . Where should I add ? All Out 70s
\item Give the current book a three . What is the rating ? three
\item \url{https://colab.research.google.com/drive/1MGDjZDdgzxZtAI\_KO2yDEOkRmX3jj2LD}
\end{itemize}
\item Do not use dynamic masking, as the orignal paper did, instead mask only the
final answer.
\begin{itemize}
\item What the paper did -
\begin{itemize}
\item Book a \texttt{<mask>} for three \texttt{<mask>} Eve's Pizzeria. Which place? Eve's
Pizzeria.
\end{itemize}
\item Instead, do -
\begin{itemize}
\item Book a spot for three at Eve's Pizzeria. Which place? \texttt{<mask>
<mask>}
\end{itemize}
\end{itemize}
\end{itemize}
\section{Any questions?}
\label{sec:org2a64843}
\end{document}