-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_quarto-web.yml
95 lines (91 loc) · 2.87 KB
/
_quarto-web.yml
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
project:
type: website
output-dir: _site
render:
- index.qmd
- schedule.qmd
- projects.qmd
- 01_command_shells.qmd
- 02_python_environments.qmd
- 03_git_github.qmd
- 04_scc.qmd
- 07_scc_cont.qmd
- 08_scc_batch_computing.qmd
- 10-pytorch-01.qmd
- 12-pytorch-02-dataloaders.qmd
- 13-pytorch-03-model-def.qmd
- 14-pytorch-04-autograd.qmd
- 15-pytorch-05-training.qmd
- 16-lc01-simple-llm-app.qmd
- 17-lc02-chatbot.qmd
- 18-lc03-retrievers.qmd
#- 19-lc04-agent.qmd
execute:
freeze: auto
# cache: true
resources:
- src/langchain/requirements.txt
- src/langchain/02-langchain-chatbot.ipynb
- src/langchain/03-retrievers.ipynb
- src/langchain/04-agents.ipynb
website:
title: "CS/DS 549 Spark! Machine Learning Practicum"
back-to-top-navigation: true
favicon: "assets/images/spark-logo.png"
page-footer: "CS/DS 549 Spark! Machine Learning Practicum"
navbar:
background: "primary"
tools:
- icon: github
menu:
- text: Source Code
href: https://github.com/trgardos/ml-549-fa24
- text: Report a Bug
href: https://github.com/trgardos/ml-549-fa24/issues
sidebar:
style: "docked"
search: true
contents:
- href: index.qmd
text: Home -- Syllabus
- href: schedule.qmd
- href: projects.qmd
- section: "Notes"
contents:
- href: 01_command_shells.qmd
text: 01 -- Command Shells
- href: 02_python_environments.qmd
text: 02 -- Python Environments
- href: 03_git_github.qmd
text: 03 -- Git and GitHub
- href: 04_scc.qmd
text: 04 -- Shared Computing Cluster
- href: 07_scc_cont.qmd
text: 07 -- SCC Continued
- href: 08_scc_batch_computing.qmd
text: 08 -- SCC Batch Computing
- href: 10-pytorch-01.qmd
text: 10 -- PyTorch 01 - Intro and Tensors
- href: 12-pytorch-02-dataloaders.qmd
text: 12 -- PyTorch 02 - Dataloaders and Transforms
- href: 13-pytorch-03-model-def.qmd
text: 13 -- PyTorch 03 - Model Definition
- href: 14-pytorch-04-autograd.qmd
text: 14 -- PyTorch 04 - Autograd
- href: 15-pytorch-05-training.qmd
text: 15 -- PyTorch 05 - Training and Evaluation
- href: 16-lc01-simple-llm-app.qmd
text: 16 -- LangChain 01 - Building a Simple LLM App with LangChain
- href: 17-lc02-chatbot.qmd
text: 17 -- LangChain 02 - Build a Chatbot with LangChain
- href: 18-lc03-retrievers.qmd
text: 18 -- LangChain 03 - Embeddings, Vector Stores and Retrievers
#- href: 19-lc04-agent.qmd
# text: 19 -- LangChain 04 - Build an Agent
format:
html:
theme: cosmo
css: styles.css
toc: true
toc-depth: 5
code-fold: false