Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: python web/build_index.py

- name: Copy lecture content into web directory
run: cp -r 大模型讲义 web/大模型讲义
run: cp -r 大模型教程 web/大模型教程

- name: Upload artifact
id: upload
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
.idea/
**/.DS_Store
web/大模型讲义/
web/大模型教程/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
另外,我们新增了Blogs板块,为大家带来前沿技术的深度分析。

## 🌿更新日志
- ⭐️**2026.04.21** 新增**大模型讲义**,涵盖完整的大模型理论与实践课程,包括深度学习基础、模型训练推理、强化学习、智能体技术等13个章节,请查看[大模型讲义](./大模型讲义).
- ⭐️**2026.04.21** 新增**大模型教程**,涵盖完整的大模型理论与实践课程,包括深度学习基础、模型训练推理、强化学习、智能体技术等13个章节,请查看[大模型教程](./大模型教程).
- ⭐️**2025.12.17** 添加了llama.cpp部署Qwen3vl GGUF的使用样例,请查看[Llama.cpp样例](./LLM-tutorial/notebook/llamacpp+qwen3vl+gguf.ipynb).
- ⭐️**2025.09.16** 增加了**超长序列并行之Ulysses+Ring-Attention技术原理与实现**. 请查看[这里](Blogs/Articles/Ulysses_Ring_Attention/report.md).
- ⭐️**2025.09.16** 增加了**DeepResearch技术综述**. 请查看[这里](Blogs/Articles/Deep-Research-Survey/report.md).
Expand Down
2 changes: 1 addition & 1 deletion README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Here we have gathered the deep learning tutorials from the MoDao community! Deve
Our github website: [LLM courses](https://modelscope.github.io/modelscope-classroom), now you can view the courses in website!

# 🌿 Update Log
- ⭐️**2026.04.21** Add **Large Model Textbook** with a complete theory and practice curriculum covering 13 chapters including deep learning fundamentals, model training & inference, reinforcement learning, agent technologies, and more. Check [大模型讲义](./大模型讲义).
- ⭐️**2026.04.21** Add **Large Model Textbook** with a complete theory and practice curriculum covering 13 chapters including deep learning fundamentals, model training & inference, reinforcement learning, agent technologies, and more. Check [大模型教程](./大模型教程).
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

In the English version of the README, the link text should ideally be in English to maintain consistency with the surrounding text. Consider changing it to 'Large Model Tutorial' or similar.

Suggested change
- ⭐️**2026.04.21** Add **Large Model Textbook** with a complete theory and practice curriculum covering 13 chapters including deep learning fundamentals, model training & inference, reinforcement learning, agent technologies, and more. Check [大模型教程](./大模型教程).
- ⭐️**2026.04.21** Add **Large Model Textbook** with a complete theory and practice curriculum covering 13 chapters including deep learning fundamentals, model training & inference, reinforcement learning, agent technologies, and more. Check [Large Model Tutorial](./大模型教程).

- ⭐️**2025.09.16** Add **Ultra-Long Sequence Parallelism: Ulysses + Ring-Attention Technical Principles and Implementation**. Check [here](Blogs/Articles/Ulysses_Ring_Attention/report_en.md).
- ⭐️**2025.09.16** Add **DeepResearch agent technical survey**. Check [here](Blogs/Articles/Deep-Research-Survey/report_en.md).
- ⭐️**2025.09.16** Add **All2All model surveys**. Check [here](Blogs/Articles/All2All-Survey/report_en.md).
Expand Down
4 changes: 2 additions & 2 deletions web/build_index.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#!/usr/bin/env python3
"""Scan 大模型讲义 directory and generate content-index.json for the web viewer."""
"""Scan 大模型教程 directory and generate content-index.json for the web viewer."""
import os
import json
import re

SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__))
CONTENT_DIR = os.path.join(SCRIPT_DIR, '..', '大模型讲义')
CONTENT_DIR = os.path.join(SCRIPT_DIR, '..', '大模型教程')
OUTPUT_FILE = os.path.join(SCRIPT_DIR, 'content-index.json')


Expand Down
Loading
Loading