-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
311 lines (245 loc) · 12.4 KB
/
index.html
File metadata and controls
311 lines (245 loc) · 12.4 KB
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:type" content="website">
<meta property="og:title" content="On the Shoulders of LLMs: From LLM Optimization to LLM Agents">
<meta property="og:description" content="On the Shoulders of LLMs: From LLM Optimization to LLM Agents">
<title>On the Shoulders of LLMs: From LLM Optimization to LLM Agents</title>
<!-- Bootstrap Core CSS -->
<link href="./css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="./css/agency.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="./css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="./css/0.css" rel="stylesheet" type="text/css">
<link href="./css/1.css" rel="stylesheet" type="text/css">
<link href="./css/2.css" rel="stylesheet" type="text/css">
<link href="./css/3.css" rel="stylesheet" type="text/css">
</head>
<body id="page-top" class="index">
<!-- Navigation -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="hidden active">
<a href="https://zcli-charlie.github.io/llm-tutorial/#page-top"></a>
</li>
<li>
<a class="page-scroll" href="https://zcli-charlie.github.io/llm-tutorial//#summary">Summary</a>
</li>
<li>
<a class="page-scroll" href="https://zcli-charlie.github.io/llm-tutorial//#resources">Resources</a>
</li>
<li>
<a class="page-scroll" href="https://zcli-charlie.github.io/llm-tutorial//#organizer">Organizer</a>
</li>
<li>
<a class="page-scroll" href="https://zcli-charlie.github.io/llm-tutorial//#contributors">Contributors</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<!-- Header -->
<header>
<div class="container">
<div class="intro-text" style="color:white;">
<div class="intro-heading">On the Shoulders of LLMs: From LLM Optimization to LLM Agents</div>
<div class="intro-lead-in"> ICPRAI 2024 Tutorial </div>
</div>
<div class="intro-lead-in">
</div>
<a href="https://brain.korea.ac.kr/icprai2024/tutorials.php" class="btn">Website</a>
<a href="https://github.com/zcli-charlie/llm-tutorial/blob/main/slides/icprai24-tutorial-slides.pdf" class="btn">Slides</a>
<!-- to be updated -->
</div>
</div>
</header>
<section id="summary" style="padding-top: 30px;" class="bg-mid-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Summary</h2>
<!--h3 class="section-subheading text-muted">Lorem ipsum dolor sit amet consectetur.</h3-->
</div>
</div>
<div class="row text-justify">
<div class="col-md-12">
<p class="large text-muted">
The tutorial will start with the basic architecture of LLMs and move on to advanced optimization techniques. Participants will learn how to enhance the performance of LLMs during the inference stage by optimizing KV cache for quicker response times, extended memory capabilities, and improved answer quality. Furthermore, the tutorial will cover diverse LLM reasoning method including, Chain-of-Thought (CoT) reasoning, to enhance the interpretability, controllability, and flexibility of LLMs. <br>
With a robust understanding of LLM enhancements, we turn to the emerging field of language agents powered by LLMs. The emergence of LLMs has significantly accelerated the evolution of AI agents, pushing closer to the long-standing goal of building intelligent, autonomous agents that can learn and act in distinct environments. This session will guide attendees through the concepts of agents, how LLMs empower these agents, and the challenges these agents might face in the future aiming to equip participants with the knowledge to effectively implement and manage LLMs in a responsible and efficient manner.
</p>
</div>
</div>
</div>
</section>
<style>
del {
text-decoration: line-through; /* 添加横线 */
color: rgba(128, 128, 128, 0.5); /* 设置文本颜色 */
}
.extended-date {
color: red; /* 设置文本颜色为红色 */
}
</style>
<section id="resources" class="">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Resources</h2>
<!--h3 class="section-subheading text-muted">Lorem ipsum dolor sit amet consectetur.</h3-->
</div>
</div>
<div class="row text-justify">
<div class="col-md-12">
<ul class="large text-muted">
<li>Igniting Language Intelligence: The Hitchhiker’s Guide From Chain-of-Thought Reasoning to Language Agents <a href="https://arxiv.org/pdf/2311.11797.pdf">[Paper]</a></li>
<li>R-Judge: Benchmarking Safety Risk Awareness for LLM Agents <a href="https://arxiv.org/pdf/2401.10019.pdf">[Paper]</a></li>
<li>Prioritizing Safeguarding Over Autonomy: Risks of LLM Agents for Science <a href="https://arxiv.org/abs/2402.04247">[Paper]</a></li>
<li>You Only Look at Screens: Multimodal Chain-of-Action Agents <a href="https://arxiv.org/abs/2309.11436">[Paper]</a></li>
<li>Multimodal Chain-of-Thought Reasoning in Language Models <a href="https://arxiv.org/abs/2302.00923">[Paper]</a></li>
<li>Automatic Chain of Thought Prompting in Large Language Models <a href="https://arxiv.org/abs/2210.03493">[Paper]</a></li>
<li>Identifying the Risks of LM Agents with an LM-Emulated Sandbox <a href="https://arxiv.org/abs/2309.15817">[Paper]</a></li>
<li>A Trembling House of Cards? Mapping Adversarial Attacks against Language Agents <a href="https://arxiv.org/abs/2402.10196">[Paper]</a></li>
<li>Llama Guard: LLM-based Input-Output Safeguard for Human-AI Conversations <a href="https://arxiv.org/abs/2312.06674">[Paper]</a></li>
<li>ShieldLM: Empowering LLMs as Aligned, Customizable and Explainable Safety Detectors <a href="https://arxiv.org/abs/2402.16444">[Paper]</a></li>
<li>Efficient Memory Management for Large Language Model Serving with PagedAttention <a href="https://dl.acm.org/doi/abs/10.1145/3600006.3613165">[Paper]</a></li>
<li>GQA: Training Generalized Multi-Query Transformer Models from Multi-Head Checkpoints <a href="https://aclanthology.org/2023.emnlp-main.298/">[Paper]</a></li>
<li>Beyond Chain-of-Thought, Effective Graph-of-Thought Reasoning in Language Models <a href="https://arxiv.org/abs/2305.16582">[Paper]</a></li>
<li>SirLLM: Streaming Infinite Retentive LLM <a href="https://arxiv.org/abs/2405.12528">[Paper]</a></li>
</ul>
</div>
</div>
</div>
</section>
<section id="organizer" class="bg-mid-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center" style="padding-bottom: 20px;">
<h2 class="section-heading">Tutorial Organizers </h2>
<!--h3 class="section-subheading text-muted">Lorem ipsum dolor sit amet consectetur.</h3-->
</div>
</div>
<div class="row">
<div class="col-sm-2">
</div>
<style>
.team-member img {
width: 200px; /* 设置图片宽度 */
height: 200px; /* 设置图片高度 */
object-fit: cover; /* 保持图片内容不变形 */
}
</style>
<div class="col-sm-2">
<div class="team-member">
<img src="./photos/zuchao_li.png" class="img-responsive img-circle" alt="" width="600" height="600">
<h4><a href="https://zcli-charlie.github.io/">Mr. Zuchao Li</a></h4>
<p class="text-muted">Associate Researcher</p>
<p class="text-muted">Wuhan University</p>
</div>
</div>
<div class="col-sm-1">
</div>
<div class="col-sm-2">
<div class="team-member">
<img src="./photos/yao_yao.jpg" class="img-responsive img-circle" alt="" width="600" height="600">
<h4><a href="https://zoeyyao27.github.io/">Ms. Yao Yao</a></h4>
<p class="text-muted">Ph.D Candidate</p>
<p class="text-muted">Shanghai Jiao Tong University</p>
</div>
</div>
<div class="col-sm-1">
</div>
<div class="col-sm-2">
<div class="team-member">
<img src="./photos/zhuosheng_zhang.jpg" class="img-responsive img-circle" alt="" width="600" height="600">
<h4><a href="https://bcmi.sjtu.edu.cn/~zhangzs/">Mr. Zhuosheng Zhang</a></h4>
<p class="text-muted">Associate Professor</p>
<p class="text-muted">Shanghai Jiao Tong University</p>
</div>
</div>
<div class="col-sm-1">
</div>
</div>
</div>
</section>
<section id="contributors" class="bg-mid-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center" style="padding-bottom: 20px;">
<h2 class="section-heading">Tutorial Contributors </h2>
<!--h3 class="section-subheading text-muted">Lorem ipsum dolor sit amet consectetur.</h3-->
</div>
</div>
<div class="row">
<div class="col-sm-2">
</div>
<div class="col-sm-2">
<div class="team-member">
<img src="./photos/teng_xiao.jpg" class="img-responsive img-circle" alt="" width="600" height="600">
<h4><a href="https://zcli-charlie.github.io/llm-tutorial/">Mr. Teng Xiao</a></h4>
<p class="text-muted">Ph.D Candidate</p>
<p class="text-muted">Wuhan University</p>
</div>
</div>
<div class="col-sm-1">
</div>
<div class="col-sm-2">
<div class="team-member">
<img src="./photos/luohe_shi.jpg" class="img-responsive img-circle" alt="" width="600" height="600">
<h4><a href="https://zcli-charlie.github.io/llm-tutorial/">Mr. Luohe Shi</a></h4>
<p class="text-muted">Undergraduate Student</p>
<p class="text-muted">Wuhan University</p>
</div>
</div>
<div class="col-sm-1">
</div>
<div class="col-sm-2">
<div class="team-member">
<img src="./photos/tongxin_yuan.jpg" class="img-responsive img-circle" alt="" width="600" height="600">
<h4><a href="https://zcli-charlie.github.io/llm-tutorial/">Mr. Tongxin Yuan</a></h4>
<p class="text-muted">Graduate Student</p>
<p class="text-muted">Shanghai Jiao Tong University</p>
</div>
</div>
<div class="col-sm-1">
</div>
</div>
</div>
</section>
<!-- jQuery -->
<script src="./js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="./js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="./js/jquery.easing.min.js"></script>
<script src="./js/classie.js"></script>
<script src="./js/cbpAnimatedHeader.js"></script>
<!-- Custom Theme JavaScript -->
<script src="./js/agency.js"></script>
</body>
</html>