Skip to content

Commit 58da127

Browse files
docs: 更新推荐系统和 Happy LLM
1 parent 912283a commit 58da127

File tree

7 files changed

+45
-9
lines changed

7 files changed

+45
-9
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,17 @@ pip install -r requirements.txt
7878
# begin serving
7979
mkdocs serve
8080

81-
#### or you can use uv to get locked dependencies
81+
########### or you can use uv to get locked dependencies
8282
# install uv first
8383
curl -LsSf https://astral.sh/uv/install.sh | sh
8484
# or pip install uv
8585

86-
# set up the environment
86+
# set up environment
8787
uv sync
88+
source .venv/bin/activate
89+
90+
# begin serving
91+
mkdocs serve
8892
```
8993

9094
## Issues

docs/llm/happy-llm.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Happy LLM
2+
3+
## 课程简介
4+
5+
- **先修要求**:深度学习,基础的 NLP 知识(如 [CS224n](../natural-language-processing/CS224n.md)
6+
- **主要内容**:从大模型的基本原理,到动手搭建一个大模型,最后到大模型训练实战,以及微调、Rag、Agent 等前沿领域的涉足
7+
8+
照我看来,学习大模型最重要的就是在了解基本原理之后,第一时间上手实操,更深入的理解往往来源于一次又一次实验的结果分析。这一点 [Datawhale](https://github.com/datawhalechina) 开源的 Happy LLM 就做得非常好,在简要的讲解了 nlp 的一些基础知识之后,就直接进入了 transformer 原理 + 代码实现的操练环节,配图之多样、代码之清晰令人赞叹,非常推荐新手通过这门课来入门大模型这一生机蓬勃的领域。
9+
10+
由于这个教程是面向新手的,所以一些概念并不深入,如有需要,建议采用自顶向下的学习方式,自行寻找资料补充学习。
11+
12+
另外提一嘴,Datawhale 开源的许多教程质量非常高,很值得一学!
13+
14+
## 相关链接
15+
16+
1. 课程网站:<https://datawhalechina.github.io/happy-llm>
17+
2. GitHub: <https://github.com/datawhalechina/happy-llm>
File renamed without changes.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# 王树森推荐系统
2+
3+
## 课程简介
4+
5+
- **先修要求**:机器学习
6+
- **主要内容**:推荐系统入门内容,包含了从召回、粗排、精排到重排的全链路讲解,以及特征交叉、行为序列、工业中实践经验等
7+
8+
这门课由小红书员工王树森讲解,主要包含工业界使用的推荐系统,覆盖了全链路的知识。正因为老师身居工作一线,故能够在讲解的过程中指出对于工业界来说重要的结论和实战经验,而不是拘泥于经验与教材的空谈。不过由于这门课的时间稍显久远(毕竟是 22 年的课了),所以很多内容比较过时,用于入门倒是不错之选。
9+
10+
## 相关链接
11+
12+
1. 课程网站:<https://space.bilibili.com/1369507485/lists/615109>
13+
2. 课程视频:同课程网站

mkdocs.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,11 +131,13 @@ nav:
131131
- "Stanford CS236: Deep Generative Model": deep-generative-model/CS236.md
132132
- "资源汇总": deep-generative-model/resources.md
133133
- 大语言模型:
134+
- "Happy LLM": llm/happy-llm.md
134135
- "资源汇总": llm/resources.md
135136
- 多模态:
136137
- "资源汇总": multimodal/resources.md
137138
- 推荐系统:
138-
- "资源汇总": recommender-system/resources.md
139+
- "王树森推荐系统": recommend-system/王树森推荐系统.md
140+
- "资源汇总": recommend-system/resources.md
139141
- AI4Science:
140142
- "资源汇总": AI4science/resources.md
141143
- 几何深度学习:

overrides/assets/javascripts/graph.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
"value": "/cuda-programming/resources/"
88
},
99
{
10-
"id": "recommender-system",
10+
"id": "recommend-system",
1111
"name": "推荐系统",
1212
"symbolSize": 0.1,
13-
"value": "/recommender-system/resources/"
13+
"value": "/recommend-system/王树森推荐系统/"
1414
},
1515
{
1616
"id": "compiler",
@@ -52,7 +52,7 @@
5252
"id": "LLM",
5353
"name": "大语言模型",
5454
"symbolSize": 0.1,
55-
"value": "/llm/resources/"
55+
"value": "/llm/happy-llm/"
5656
},
5757
{
5858
"id": "AI-Intro",
@@ -394,11 +394,11 @@
394394
},
395395
{
396396
"source": "ML",
397-
"target": "recommender-system"
397+
"target": "recommend-system"
398398
},
399399
{
400400
"source": "DL",
401-
"target": "recommender-system"
401+
"target": "recommend-system"
402402
},
403403
{
404404
"source": "parallel-and-distribute",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "aitour"
33
version = "0.1.0"
4-
description = "Add your description here"
4+
description = "AI 学习之旅"
55
readme = "README.md"
66
requires-python = ">=3.10.0"
77
dependencies = [

0 commit comments

Comments
 (0)