-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcourse-llm.html
More file actions
71 lines (58 loc) · 3.93 KB
/
course-llm.html
File metadata and controls
71 lines (58 loc) · 3.93 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="utf-8" />
<title>DM2 Lab: Data Mining towards Decision Making</title>
<!-- Favicon -->
<link rel="shortcut icon" href="images/favicon.gif" />
<!-- Standard reset, fonts and grids -->
<link rel="stylesheet" type="text/css" href="styles/reset-fonts-grids.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<!-- styles for the whole website -->
<link href="styles/styles.css" rel="stylesheet" type="text/css" />
<!-- scripts -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://www.francois-petitjean.com/main.js" type="text/javascript"></script>
</head>
<body class="yui-skin-sam" id="yahoo-com">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<div id="doc" class="yui-t1">
<div id="hd">
<div id="header"><a href="https://www.nd.edu/"><img id="nd-logo" src="images/logo_nd.png" alt="CSE@NotreDame" /></a></div>
</div>
<h1>CSE 60556: Large Language Models</h1>
<h2>Description</h2>
<div>
This is a graduate-level elective course. It aims at graduate students who are interested in using and/or developing large language model (LLMs) techniques. It is designed for those who have knowledge and programming experience of machine learning. This course introduces tasks and datasets related to language models (LMs), LLM architectures, LLM training techniques, reasoning methods, knowledge augmentation methods, efficient LLM methods, various LLM applications (e.g., assistant, education, healthcare, RecSys, planning), and challenges in LLMs for social good. Specifically, we talk about popular LLM concepts such as Scaling Law, GPT, RLHF, ICL, IFT, CoT, RAG, PEFT, Agent, Hallucination, and Trustworthiness. We will cover each topic and discuss the concepts in depth. Students will be expected to routinely read and present research papers and complete a research project at the end. In the project, students attempt to reimplement and improve upon a research paper in a topic of their choosing.
</div>
<h2>Instructor</h2>
<table>
<td width="150" height="155">
<img src="lab/images/meng.jpg" height="150" />
</td>
<td width="600">
<div><a href="http://www.meng-jiang.com">Meng Jiang</a></div>
</td>
</table>
<h2>Prerequisites</h2>
<div>
Received credits with graduate student status from at least one course below: CSE 60625 Machine Learning, CSE 60647 Data Science, CSE 60657 Natural Language Processing, CSE 60868 Neural Networks; or highly-related graduate-level courses at another accredited university.
</div>
<h2>Course Topics</h2>
<ul>
<li class="O">Why language models: Tasks and benchmarks</li>
<li class="O">Neural language models</li>
<li class="O">Programming language models</li>
<li class="O">GPTs: GPT-1, GPT-2, scaling law, GPT3, and prompt engineering</li>
<li class="O">LLM training: RLHF, IFT, open-weight LLMs, and foundation models</li>
<li class="O">Reasoning: Tasks and benchmarks, CoT and its family</li>
<li class="O">RAG: Retrieval-based LM, retrieval augmentation, generative retrieval, knowledge augmentation, memory augmentation</li>
<li class="O">Efficient LM: PEFT, distillation, quantization, and long-context LLM</li>
<li class="O">LLM applications: Agent and assistant, RecSys, planning, education, healthcare, and strutured data</li>
<li class="O">LLM for social good: Hallucination and trustworthy</li>
</ul>
</ul>
</div>
<br><br><br><br><br>
</body>