20260706:新增一些文章

This commit is contained in:
2026-07-06 10:14:02 +08:00
parent 6021dea160
commit 24b006225b
194 changed files with 8512 additions and 91 deletions

View File

@@ -0,0 +1,30 @@
---
title: "Manifold Hypothesis (流形假设)"
created: 2026-06-25
updated: 2026-06-25
type: concept
tags: [manifold-learning, dimensionality-reduction, representation-learning]
sources: ["[[sen-mapping-networks]]"]
---
# Manifold Hypothesis (流形假设)
Manifold Hypothesis 是机器学习中的核心假设:**高维数据(如图像、文本)实际上分布在嵌入于高维空间中的低维流形上或附近**。
形式化:对 x ∈ X ⊂ R^D高维输入空间∃ M低维流形使得 M ⊂ X且 d = dim(M) ≪ D。神经网络学习的是映射 f_θ: M → Y。
## 推广到参数空间
[[weight-manifold-hypothesis|Weight-Manifold Hypothesis]] 将这一假设从**数据空间**推广到**参数空间**:不仅数据在低维流形上,训练后的网络参数 θ* ∈ R^P 也位于低维流形 M_θ ⊂ R^P 上,其中 dim(M_θ) ≪ P。
## 经验证据
- **Intrinsic Dimension 研究**:深度网络的 objective landscape 的有效内在维度远低于参数总数Li et al., 2018
- **训练轨迹分析**不同初始化、不同架构的深度网络的训练轨迹收敛到同一个低维流形Mao et al., 2024
- **Mode Connectivity**SGD 解之间存在低损路径连接Garipov et al., 2018
## 参考
- Fefferman et al., "Testing the Manifold Hypothesis", JAMS 2016
- [[intrinsic-dimension]]
- [[loss-landscape]]