forked from CinderZhang/FinnData
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweek12.html
66 lines (55 loc) · 2.6 KB
/
week12.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Week 12: LLM and Prompt Engineering</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
</head>
<body>
<!-- Add the Back to Home button at the bottom as well -->
<div class="back-to-home">
<a href="index.html">← Back to Home</a>
</div>
<div class="container">
<h2>Week 12: LLM and Prompt Engineering</h2>
<h3>Learning Objectives:</h3>
<ul>
<li>Understand prompt engineering in natural language processing.</li>
</ul>
<h3>Materials:</h3>
<!-- Previous sections -->
<h4>5. Introduction to Prompt Engineering in NLP</h4>
<p>Learn about prompt engineering, a technique used in natural language processing to guide the responses of language models.</p>
<a href="https://youtu.be/nI8kS42-kr0?si=umaf0EUKxBdOOw0R" target="_blank">Prompt Engineering Tutorial</a>
<h3>Exercises:</h3>
<ol>
<!-- Previous exercises -->
<li>Experiment with different prompts to guide the responses of a language model and analyze the results.</li>
</ol>
</div>
<h3>Reminder:</h3>
<div id="ChatGPT Lead deep dive">
<h3>Every Week: Personalized Python Learning with ChatGPT Plus--10 or More prompts/convesations required on each topic</h3>
<p>Use the PROMPT to personalize your learning experience with ChatGPT Plus</p>
<a href="https://github.com/JushBJJ/Mr.-Ranedeer-AI-Tutor">ChatGPT Lead deep dive</a>
</div>
<div id="ChatGPT Assignment">
<h3>Every Week: Test your knowledge of Python weekly topics On ChatGPT Plus</h3>
<p>Use the PROMPT to test your knowledge and grade it by ChatGPT</p>
<a href="https://github.com/CinderZhang/FinnData/blob/main/chatGPT_AssignmentSample.md">ChatGPT Assignment</a>
</div>
<div style="text-align: center; margin-top: 20px;">
<a href="week11.html">← Previous Week</a>
|
<a href="week13.html">Next Week →</a>
</div>
<!-- Add the Back to Home button at the bottom as well -->
<div class="back-to-home">
<a href="index.html">← Back to Home</a>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</body>
</html>