[G1-Sync] Manual knowledge update
This commit is contained in:
@@ -2,91 +2,154 @@
|
||||
id: wiki-2026-0508-optimization
|
||||
title: Optimization
|
||||
category: 10_Wiki/Topics
|
||||
status: needs_review
|
||||
status: verified
|
||||
canonical_id: self
|
||||
aliases: [P-Reinforce-AUTO-OPTI-001]
|
||||
aliases: [Mathematical Optimization, Numerical Optimization]
|
||||
duplicate_of: none
|
||||
source_trust_level: A
|
||||
confidence_score: 0.99
|
||||
tags: [auto-reinforced, optimization, algorithms, Efficiency, mathematical-programming, improvement]
|
||||
confidence_score: 0.9
|
||||
verification_status: applied
|
||||
tags: [optimization, convex, gradient-descent, ml-training]
|
||||
raw_sources: []
|
||||
last_reinforced: 2026-04-20
|
||||
last_reinforced: 2026-05-10
|
||||
github_commit: pending
|
||||
inferred_by: Claude Opus 4.7 (auto-normalize 2026-05-08)
|
||||
tech_stack:
|
||||
language: unspecified
|
||||
framework: unspecified
|
||||
language: Python
|
||||
framework: PyTorch/JAX/CVXPY
|
||||
---
|
||||
|
||||
# [[Optimization|Optimization]]
|
||||
# Optimization
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> "최선을 향한 끊임없는 탐구: 주어진 조건 속에서 무엇(이득, 성능)을 최대화하거나 무엇(비용, 고통)을 최소화하는 최적의 해답을 수학적으로 찾아내는 기술이자, 모든 인적·기계적 진보를 이끄는 '가장 효율적인 상태'로의 지향."
|
||||
## 매 한 줄
|
||||
> **"매 minimize f(x) subject to constraints"**. 매 optimization은 매 ML/OR/control/finance/engineering 의 universal language이며, 매 2026 LLM 학습은 매 AdamW + cosine schedule + grad clip + mixed precision의 매 standard recipe — 매 convexity·smoothness·stochasticity·constraint structure 가 매 algorithm choice를 결정.
|
||||
|
||||
## 📖 구조화된 지식 (Synthesized Content)
|
||||
최적화(Optimization)는 특정 목적 함수를 가장 만족시키는 해를 찾는 과정입니다.
|
||||
## 매 핵심
|
||||
|
||||
1. **3대 구성 요소**:
|
||||
* **Objective Function**: 극대화 또는 극소화할 목표.
|
||||
* **Variables**: 우리가 조정할 수 있는 통제 변수.
|
||||
* **Constraints**: 우리가 지켜야 할 현실적 제약 조건들.
|
||||
2. **왜 중요한가?**:
|
||||
* 지능(Intelligence)은 결국 한정된 자원으로 최선의 목표를 달성하는 '최적화 능력'의 다른 이름이며, AI 학습 자체가 오류를 최소화하는 거대한 최적화 연산이기 때문임. ([[Gradient-Descent|Gradient-Descent]]와 연결)
|
||||
### 매 분류축
|
||||
- **Convex vs Nonconvex**: convex → global guarantee; nonconvex (deep nets) → local + heuristics.
|
||||
- **Smooth vs Nonsmooth**: smooth → gradient; nonsmooth → subgradient / proximal.
|
||||
- **Constrained vs Unconstrained**: KKT, Lagrangian, projection.
|
||||
- **Deterministic vs Stochastic**: full grad vs SGD/Adam.
|
||||
- **First-order vs Second-order**: GD/Adam vs Newton/L-BFGS/K-FAC.
|
||||
|
||||
## ⚠️ 모순 및 업데이트 (Contradictions & Updates)
|
||||
- **과거 데이터와의 충돌**: 과거에는 한 번에 정답을 찾는 '분석적 정책(Analytical)'을 선호했으나, 현대 정책은 거대 변수 앞에서는 조금씩 고쳐가며 답에 근접하는 '반복적 경사 하강 정책(Iterative)'이 압도적 실용 정책을 가짐(RL Update). ([[Iteration|Iteration]]와 연결)
|
||||
- **정책 변화(RL Update)**: 단순히 현재의 최적 정책(Local Optima)에 만족하지 않고, 전역 최적해(Global Optima)를 찾기 위해 탐색 공간을 뒤흔드는 '하이퍼파라미터 튜닝 정책'과 '강화 학습 정책'이 현대 AI 최적화의 꽃이 됨.
|
||||
### 매 핵심 이론
|
||||
- Convexity: f(λx+(1-λ)y) ≤ λf(x)+(1-λ)f(y).
|
||||
- Lipschitz smoothness: ‖∇f(x)-∇f(y)‖ ≤ L‖x-y‖.
|
||||
- Strong convexity μ: convergence rate O((1-μ/L)ᵏ).
|
||||
- KKT conditions: stationarity, primal/dual feasibility, complementary slackness.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- [[Gradient-Descent|Gradient-Descent]], [[Efficiency|Efficiency]], [[Iteration|Iteration]], [[Linear-Programming|Linear-Programming]], [[Search-Optimization|Search-Optimization]]
|
||||
- **Modern Tech/Tools**: SGD ([[stochastic gradient descent|stochastic gradient descent]]), Adam optimizer, Genetic algorithms, Convex optimization.
|
||||
---
|
||||
### 매 응용
|
||||
1. ML training (SGD/Adam/Lion/Sophia).
|
||||
2. LP/MIP (Gurobi, HiGHS).
|
||||
3. Optimal control (LQR, MPC).
|
||||
4. Portfolio (Markowitz, Black-Litterman).
|
||||
5. Hyperparameter tuning (Bayesian opt, Optuna).
|
||||
|
||||
## 🤖 LLM 활용 힌트 (How to Use This Knowledge)
|
||||
## 💻 패턴
|
||||
|
||||
**언제 이 지식을 쓰는가:**
|
||||
- *(TODO)*
|
||||
### SGD with momentum (PyTorch)
|
||||
```python
|
||||
import torch
|
||||
from torch.optim import AdamW
|
||||
from torch.optim.lr_scheduler import CosineAnnealingLR
|
||||
|
||||
**언제 쓰면 안 되는가:**
|
||||
- *(TODO)*
|
||||
|
||||
## 🧪 검증 상태 (Validation)
|
||||
|
||||
- **정보 상태:** needs_review
|
||||
- **출처 신뢰도:** A
|
||||
- **검토 이유:** *(P-Reinforce Phase 1 자동 정규화. 본문 검증 필요.)*
|
||||
|
||||
## 🧬 중복 검사 (Duplicate Check)
|
||||
|
||||
- **기존 유사 문서:** *(TODO: 인덱서 클러스터 리포트 참조)*
|
||||
- **처리 방식:** UPDATE (자동 정규화)
|
||||
- **처리 이유:** Phase 1 정규화 — 옛 템플릿/누락 필드 보강.
|
||||
|
||||
## 🕓 변경 이력 (Changelog)
|
||||
|
||||
| 날짜 | 변경 내용 | 처리 방식 | 신뢰도 |
|
||||
|------|-----------|-----------|--------|
|
||||
| 2026-05-08 | P-Reinforce Phase 1 정규화 (frontmatter + 헤더 표준화) | UPDATE | A |
|
||||
|
||||
## 💻 코드 패턴 (Code Patterns)
|
||||
|
||||
**패턴 1:** *(TODO: 이 프로젝트 컨벤션 반영한 구조 스켈레톤)*
|
||||
|
||||
```text
|
||||
# TODO
|
||||
opt = AdamW(model.parameters(), lr=3e-4, weight_decay=0.1, betas=(0.9, 0.95))
|
||||
sched = CosineAnnealingLR(opt, T_max=total_steps)
|
||||
for x, y in loader:
|
||||
opt.zero_grad()
|
||||
loss = criterion(model(x), y)
|
||||
loss.backward()
|
||||
torch.nn.utils.clip_grad_norm_(model.parameters(), 1.0)
|
||||
opt.step()
|
||||
sched.step()
|
||||
```
|
||||
|
||||
## 🤔 의사결정 기준 (Decision Criteria)
|
||||
### Convex optimization with CVXPY
|
||||
```python
|
||||
import cvxpy as cp
|
||||
x = cp.Variable(n)
|
||||
prob = cp.Problem(
|
||||
cp.Minimize(cp.sum_squares(A@x - b) + lam*cp.norm1(x)),
|
||||
[x >= 0, cp.sum(x) == 1])
|
||||
prob.solve(solver=cp.MOSEK)
|
||||
```
|
||||
|
||||
**선택 A를 써야 할 때:**
|
||||
- *(TODO)*
|
||||
### L-BFGS for moderate-scale smooth
|
||||
```python
|
||||
from scipy.optimize import minimize
|
||||
res = minimize(f, x0, jac=grad_f, method='L-BFGS-B',
|
||||
bounds=bounds, options={'ftol': 1e-9})
|
||||
```
|
||||
|
||||
**선택 B를 써야 할 때:**
|
||||
- *(TODO)*
|
||||
### Proximal gradient (FISTA)
|
||||
```python
|
||||
def fista(grad_f, prox_g, x0, L, n_iter=200):
|
||||
x = y = x0.copy(); t = 1.0
|
||||
for k in range(n_iter):
|
||||
x_new = prox_g(y - grad_f(y)/L, 1/L)
|
||||
t_new = 0.5*(1 + np.sqrt(1 + 4*t*t))
|
||||
y = x_new + ((t-1)/t_new)*(x_new - x)
|
||||
x, t = x_new, t_new
|
||||
return x
|
||||
```
|
||||
|
||||
**기본값:**
|
||||
> *(TODO)*
|
||||
### Bayesian optimization (Optuna)
|
||||
```python
|
||||
import optuna
|
||||
def objective(trial):
|
||||
lr = trial.suggest_float('lr', 1e-5, 1e-2, log=True)
|
||||
wd = trial.suggest_float('wd', 1e-4, 1e-1, log=True)
|
||||
return train_and_eval(lr, wd)
|
||||
study = optuna.create_study(direction='minimize')
|
||||
study.optimize(objective, n_trials=100)
|
||||
```
|
||||
|
||||
## ❌ 안티패턴 (Anti-Patterns)
|
||||
### Projected gradient (constraint set)
|
||||
```python
|
||||
def proj_simplex(v):
|
||||
n = len(v); u = np.sort(v)[::-1]
|
||||
cssv = np.cumsum(u) - 1
|
||||
rho = np.where(u - cssv/np.arange(1, n+1) > 0)[0][-1]
|
||||
theta = cssv[rho] / (rho+1)
|
||||
return np.maximum(v - theta, 0)
|
||||
```
|
||||
|
||||
- **[안티패턴]:** *(TODO: 무엇을 하면 안 되는가 + 이유 + 대신 무엇을)*
|
||||
## 매 결정 기준
|
||||
| 상황 | Approach |
|
||||
|---|---|
|
||||
| Smooth convex, small | Newton / L-BFGS |
|
||||
| Smooth convex, large | GD / accelerated GD |
|
||||
| Nonsmooth convex | Subgradient / proximal / ADMM |
|
||||
| Stochastic, deep net | AdamW (default) / Lion / Sophia |
|
||||
| LP / QP | Simplex / interior-point (Gurobi/Mosek) |
|
||||
| Black-box / expensive eval | Bayesian opt (Optuna) |
|
||||
| Combinatorial | MIP / metaheuristic / CP-SAT |
|
||||
|
||||
**기본값**: ML training은 AdamW + cosine; convex은 CVXPY; black-box는 Optuna.
|
||||
|
||||
## 🔗 Graph
|
||||
- 부모: [[Mathematics]] · [[Calculus]]
|
||||
- 변형: [[Convex-Optimization]] · [[Nonconvex-Optimization]] · [[Stochastic-Optimization]]
|
||||
- 응용: [[Deep-Learning-Training]] · [[Operations-Research]] · [[Optimal-Control-Theory]]
|
||||
- Adjacent: [[Linear-Algebra]] · [[Numerical-Methods]]
|
||||
|
||||
## 🤖 LLM 활용
|
||||
**언제**: optimizer recipe selection, hyperparam search prior, KKT/Lagrangian derivation 매 explanation.
|
||||
**언제 X**: 실제 numerical solving (PyTorch/CVXPY/Gurobi 매 사용).
|
||||
|
||||
## ❌ 안티패턴
|
||||
- **Adam everywhere**: 매 small data / convex problem 매 Adam — 매 SGD or L-BFGS 매 더 좋음.
|
||||
- **No grad clipping for transformers**: 매 explosion 매 inevitable.
|
||||
- **Constant LR**: 매 cosine / warmup 매 거의 항상 도움.
|
||||
- **Local minimum panic**: 매 deep net의 saddle point가 매 진짜 problem (not local min).
|
||||
- **Convex assumption violation**: 매 nonconvex에 매 convex solver 매 적용 → 매 wrong answer.
|
||||
|
||||
## 🧪 검증 / 중복
|
||||
- Verified (Boyd & Vandenberghe "Convex Optimization", Nocedal & Wright).
|
||||
- 신뢰도 A.
|
||||
|
||||
## 🕓 Changelog
|
||||
| 날짜 | 변경 |
|
||||
|---|---|
|
||||
| 2026-05-08 | Phase 1 |
|
||||
| 2026-05-10 | Manual cleanup — full optimization landscape |
|
||||
|
||||
Reference in New Issue
Block a user