-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprompt_initial.txt
95 lines (81 loc) · 6.15 KB
/
prompt_initial.txt
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
Please read this paper and prepare 15 Beamer slides. The intended audience includes machine learning professors, PhD students, and AI research scientists in AI/tech. Ensure the slides are self-contained so that the content is understandable independently. Pay attention to the following guidelines:
- Be very specific: Each slide should present detailed ideas. Use bullet points, but avoid being abstract and provide DETAILED information. For example:
- Do not say "This paper provides insights into the new architecture." Instead, explain the specific insights and the architecture details.
- Do not say "The proposed method demonstrates better accuracy than baselines." Instead, specify the tasks/benchmarks (e.g., dataset/benchmark names) where the proposed method excels, and quantify the improvement (e.g., 14% better accuracy).
- Maximum number of `\item` between `\begin{itemize}` and `\end{itemize}` is 4. For example:
```latex
\begin{itemize}
\item 1st item
\item 2nd item
\item 3rd item
\item 4th item
\end{itemize}
```
An exception is when you use equations. Then, it should be something like this.
```latex
\begin{align}
Equation goes here...
\end{align}
\begin{itemize}
\item 1st item, explain notations/definitions carefully here.
\item 2nd item, explain the meaning of the equation here.
\end{itemize}
```
- Logical Flow: Organize the slides in a logical sequence, typically following the structure of the paper:
- First slide: should include the full title of the paper and the first author of the paper. Write only the last name and omit the first name. Write "\author[]{Author: author name et al.}". Use footnotesize font and centerize URLs. Make URLs clickable. No need to include today's date, but please include the date that the paper was released or uploaded to arxiv. This information is provided in the beginning of the paper. Note that the title, author, and date commands should be placed in the preamble and not in the first frame.
- Next slide: executive summary of the paper.
- Introduction slides: focus on the background and motivation of the paper. If necessary, highlight some issues of previous work. It shouldn't have too much overlap with the executive summary. Look for a figure that explains the overview of the proposed method. If such a figure exists, make a slide with that figure. This is very helpful for the reader.
- Proposed method slides: such as the novel architecture, new loss function, new learning objective, new dataset, etc. this depends on the paper. Explain the core ideas and innovations that were introduced. Make sure to explain in detail since this is the MOST IMPORTANT PART. Explain WHY certain choices were made.
- Result slides: such as the design of the experiments and the results. be super specific. whenever you say "significant improvement" or "superior results", explain quantitatively.
- Concluding slides: you may use a slide for conclusion and future directions. Do NOT include a "Thank you" slide after the concluding slide.
- Figures: As I have explained, look for a figure that explains the overview of the proposed method or a figure that demonstrates the superior performance of the proposed method. If there are such figures, include 1 or 2 figures in the beamer slides. An example of a figure in beamer:
```latex
\begin{frame}{}
\begin{figure}
\centering
\includegraphics[width=0.7\textwidth,height=0.7\textheight,keepaspectratio]{example.png}
\caption{Only use up to 1 informative sentence here.}
\end{figure}
\end{frame}
```
Make sure to replace `example.png` with the actual figure file name with the correct path.
Here is the list of image paths that you are allowed to use:
PLACEHOLDER_FOR_FIGURE_PATHS
Do not use anything else. You often use images that do not exist, or choose the wrong extension. You shouldn't use the image files that are not used in the paper. Be careful!
I prefer not to have frame title/bullet-point text in the slide if we are using the caption to explain the figure. Finally, don't forget `[width=0.7\textwidth,height=0.7\textheight,keepaspectratio]`!
Furthermore, do NOT use the command `\label`.
- Equations and math: If there is an important equation, definitely include it! Examples are the learning objective or the equations that might be used in a novel neural network architecture. In such cases, also define the symbols/notations used. However, please enter a new line or make the font size smaller for long expressions because it won't fit in the slide.
- Visual: you may use bold to emphasize some important keywords. use itemize instead of writing paragraphs. but make sure to write the full sentence.
- Do not use the – character. It does not compile on my environment. Use - instead. Use abbreviations such as GANs, VAEs, SGD, LLM, and so on. use "w/" for "with" and "w/o" for "without".
Begin your latex code with the following.
```latex
\documentclass[aspectratio=169,14pt]{beamer}
\input{ADDITIONAL.tex}
\usepackage{mathtools,amssymb}
\usepackage{amsmath}
\usepackage{bm}
\usetheme{Berlin}
\usecolortheme{dolphin}
\usefonttheme{professionalfonts}
\setbeamertemplate{footline}{}
\institute{\normalsize created by paper2slides}
\setbeamersize{text margin left=0.1cm, text margin right=0.3cm}
\setbeamertemplate{headline}{}
\setbeamertemplate{section in head/foot}{}
\setbeamertemplate{subsection in head/foot}{}
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{footline}{
\leavevmode%
\hbox{%
\begin{beamercolorbox}[wd=.5\paperwidth,ht=2.25ex,dp=1ex,right]{title in head/foot}%
\usebeamerfont{title in head/foot}\insertshorttitle\hspace*{2ex}
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=.5\paperwidth,ht=2.25ex,dp=1ex,left]{date in head/foot}%
\usebeamerfont{date in head/foot}\hspace*{2ex}
\end{beamercolorbox}}%
\vskip0pt%
}
```
Note that `ADDITIONAL.tex` includes all packages and new commands defined in the original paper and `ADDITIONAL.tex` exists in the current directory. Make sure to include this in the beamer code.
Make sure to provide the final perfect polished version because I will use it directly without editing further.
Now provide the latex source code: start with ```latex, provide latex code, and then end with ```. Provide the full latex source code at once.