@Jolyne_AI: 学机器学习最常见的尴尬是:教程要么只讲概念,听完还是一头雾水;要么直接甩代码,跑得动却说不清为什么。 我今天在 GitHub 挖到一个很值得收藏的开源项目:Machine Learning Visualized。它把算法“讲明白”的方式很…
摘要
An open-source project that visualizes machine learning algorithms using Jupyter Notebooks, with interactive Marimo notebooks and mathematical derivations, hosted on GitHub.
查看缓存全文
缓存时间: 2026/07/04 06:39
学机器学习最常见的尴尬是:教程要么只讲概念,听完还是一头雾水;要么直接甩代码,跑得动却说不清为什么。
我今天在 GitHub 挖到一个很值得收藏的开源项目:Machine Learning Visualized。它把算法“讲明白”的方式很直接——用可视化把每一步训练过程摊开给你看,让原理不再停留在文字和公式里。
复杂算法被拆成直观的动态图流程,配上完整的数学推导和交互式界面,你能清晰看到训练中权重如何更新、如何一步步收敛到更优解。
GitHub:https://github.com/gavinkhung/machine-learning-visualized…
你能得到什么:
- 神经网络、逻辑回归、感知器等核心算法的完整实现
- 从第一性原理出发的详细推导,公式不跳步、思路讲清楚
- 交互式 Marimo 笔记本,参数随调随看效果
- 训练过程可视化,收敛路径与权重变化一目了然
- 覆盖 PCA、K-means、梯度下降等常用方法
项目基于 Jupyter Book 构建:既可在线浏览学习,也支持 Docker 本地一键部署,拉起就能用。
gavinkhung/machine-learning-visualized
Source: https://github.com/gavinkhung/machine-learning-visualized
Machine Learning Visualized

URL: https://ml-visualized.com/
Machine Learning Visualized is a Jupyter Book containing Jupyter Notebooks that implement and mathematically derive machine learning algorithms from first-principles.
There are also Interactive Notebooks built with Marimo that allow you to see how the weights influence the loss functions.
The output of each notebook is a visualization of the machine learning algorithm throughout its training phase, ultimately converging at its optimal weights.
There is a separate Github Repository for each machine learning algorithm. Thus, this repository is simply the code to configure and build the Jupyter Book. At a very high level, Jupyter Books allow you to build a website with Markdown files and Jupyter Notebooks. Notice that none of the Jupyter Notebooks are in this repository. There is a SH script to download the relevant Jupyter Notebooks from other Github Repos. Once that is complete, the Jupyter Book can be built. The website is updated using the GitHub Action at .github/workflows/ci.yml after every commit or pull request. To build the website locally, see the Usage section below.
Jupyter Notebooks
- Neural Networks Repo
- Logistic Regression Repo
- Perceptron Repo
- Principal Component Analysis Repo
- K Means Repo
- Gradient Descent Repo
Jupyter Book Info
Table of Contents and structure of the book is specified at _toc.yml.
Configuration is specified at _config.yml.
For more information, check out the Jupyter Book Docs.
Usage
Step 1: Download the Jupyter Notebooks
chmod +x ./download_notebooks.sh
./download_notebooks.sh
Step 2: Building the Jupyter Book
Option 1: jupyter-book CLI
pip install -U jupyter-book
jupyter-book build .
Option 2: Docker Compose
docker compose run --rm jupyter-book
docker compose down --remove-orphans --volumes --rmi local
Option 3: Docker
docker build -f Dockerfile.book -t jupyter-book .
docker run --rm -v "$(pwd)":/usr/src/app jupyter-book
docker stop jupyter-book
docker rm jupyter-book
docker rmi jupyter-book
Step 3: Open the Jupyter Book
Navigate to _build/html/index.html
Build EPUB (NEW)
brew install --cask mactex
nbmerge $(ls chapter1/*.ipynb chapter2/*.ipynb chapter3/*.ipynb chapter4/*.ipynb | sort) -o book/combined.ipynb
jupyter nbconvert --to latex book/combined.ipynb
docker build -f Dockerfile.pandoc -t my-pandoc .
docker run --rm -v $(pwd):/data my-pandoc pandoc book/combined.tex -o book/combined.epub --mathml --embed-resources --standalone
Output
Marimo Interactive Notebooks

Mathematically Explained

相似文章
@XAMTO_AI: 机器学习入门最容易被什么坑到? 要么教程全是废话,听完还是懵的;要么上来就甩代码,跑通了也不知道为啥。 GitHub上有个宝藏项目:Machine Learning Visualized,直接把算法训练过程可视化给你看,权重怎么更新、怎么…
介绍 GitHub 上的 Machine Learning Visualized 项目,该工具通过交互式笔记本和可视化图表展示机器学习算法(如神经网络、逻辑回归等)的训练过程,帮助初学者理解原理。
@knowledgefxg: 学机器学习最痛苦的事情是什么?是对着一堆公式发呆,死记硬背,项目作者把神经网络、逻辑回归等这些经典算法,从数学第一原理开始推导,一步一步写成 Jupyter Notebook,然后把整个训练过程可视化出来,让你在学习的时候有个直观的感觉。…
推荐一个机器学习学习资源,该项目从数学第一原理推导经典算法,并通过 Jupyter Notebook 逐步实现和可视化训练过程,帮助学习者直观理解。
@DivyanshT91162: 人们放弃机器学习的原因只有一个:打开一个笔记本……看到200行公式……突然觉得每个教程都像博士论文一样。
文章重点介绍了一个开源代码库,该代码库使用 Jupyter 笔记本从基本原理重新构建经典的机器学习算法,并提供逐步可视化,帮助学习者理解底层机制,而不仅仅是复制代码。
@tom_doerr:从第一性原理可视化机器学习算法 https://github.com/gavinkhung/machine-learning-visualized…
本文介绍了 Machine Learning Visualized,这是一个 Jupyter Book 和交互式平台,它从第一性原理出发,通过可视化方式实现和推导机器学习算法。
@cevenif: 市面上90%的机器学习教程其实都在误导你——光会训练模型又能怎样?上不了生产线,前面全白搭。 说真的,这个坑我见过太多人往里跳了:跟着教程把模型训得飞起,一扔进真实环境就当场歇菜——不知道怎么部署、不会做监控、扩展性一塌糊涂。 哈佛大学直…
哈佛大学开源《Machine Learning Systems》教材,系统讲解ML系统设计、数据工程、模型部署、MLOps和边缘AI等实践内容,旨在帮助将AI从研究落地到生产环境,免费获取于GitHub。