-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAI-presentation.qmd
84 lines (57 loc) · 1.86 KB
/
AI-presentation.qmd
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
---
title: "AI"
format:
revealjs:
toc: true
template-partials:
- toc-slide.html
# include-after-body: toc-add.html
---
## How to use AI effectively
AI is unlikely to replace any of us, but someone who knows AI could replace any of us.
so let's learn how to use AI effectively
## Agenda and Goals
<!-- - What is an LLM and what is it doing? -->
<!-- - how to wrtie effective prompts -->
<!-- - How to evaluate your prompting strategy -->
<!-- - Augmenting prompts with context -->
<!-- - Tools -->
```{=html}
<div id='toc'></div>
```
# What is an LLM and what is it doing?
# How to write effective prompts
# How to evaluate your prompting strategy
# Augmenting prompts with context
# Tools
## Tools
- Most people think of ChatGPT, Bard, or Copilot when they hear AI
- Large and vibrant open source community
## Alterantive cloud-based LLMs
## Running local LLMs
- Tools for local LLMs
- LM Studio
- llama.cpp
- GPT4ALL
- Ollama
- Jan
## Local LLM choices
- I manage my local models with LM Studio
- Experiment in their model laboratory too
- Gives the same prompt to multiple different models
- Choices about models
- Which model to use?
- Which version to use?
- Which quantization to use?
- These are all tricky questions and none of them have an easy or straightforward answer
## Quarto
Quarto enables you to weave together content and executable code into a finished presentation. To learn more about Quarto presentations see <https://quarto.org/docs/presentations/>.
## Bullets
When you click the **Render** button a document will be generated that includes:
- Content authored with markdown
- Output from executable code
## Code
When you click the **Render** button a presentation will be generated that includes both content and the output of embedded code. You can embed code like this:
```{r}
1 + 1
```