9148c358d0
Topic_Agent/Topic_Blog/Topics/Topics_Biz/Topics_Meeting/Topics_Rag의 마크다운 지식 문서를 Topic_General/Topic_Programming/Topic_Graphic/Topic_Business 4개 카테고리로 재분류. - 중복 제거: frontmatter의 status:duplicate/merged + duplicate_of/redirect_to 필드로 자기 자신을 중복으로 선언한 리다이렉트 stub 1032개 제거, 완전 동일 내용 파일 472개 제거, 동일 파일명·다른 내용 충돌 시 더 큰(완전한) 버전만 유지(162개 제거) — 총 1639개 중복 제거. - 분류: 폴더 단위로 명확한 항목(AI_and_ML/Coding/Architecture 등 → Programming, Comfyui/Visual_Effects → Graphic, Topics_Biz/Topics_Meeting/사업 등 → Business, Poetic_Blog_Writing/창의성/Game_Design 등 → General)은 폴더 우선순위로, 나머지 혼재 폴더(Topic_Agent/Topic_Blog/Topics 루트/Thinking & Reasoning/Other/UI_UX_Assets)는 title/tags 키워드 스코어링으로 파일 단위 분류(불명확한 경우 General로 폴백). 원본 폴더명은 "From_*" 서브폴더로 보존해 추적 가능성 유지. - 최종 배치: Programming 2784 / General 1608 / Graphic 285 / Business 249 = 4926개 문서. - 에이전트 운영 상태(.astra/.agent/.obsidian/sessions/memory/_company/docs/lessons/_shared/src)는 지식 콘텐츠가 아니므로 재분류 대상에서 제외하고 원위치 유지. - Topics/Topic_email(상위 보호 폴더 Topic_email과 파일명 100% 중복) 삭제 — 보호 폴더 자체는 미변경. - 완전히 비게 된 Topic_Agent/Topic_Blog/Topics_Biz/Topics_Rag 폴더 제거.
5.2 KiB
5.2 KiB
id, title, category, status, canonical_id, aliases, duplicate_of, source_trust_level, confidence_score, verification_status, tags, raw_sources, last_reinforced, github_commit, tech_stack
| id | title | category | status | canonical_id | aliases | duplicate_of | source_trust_level | confidence_score | verification_status | tags | raw_sources | last_reinforced | github_commit | tech_stack | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| wiki-2026-0508-loss-functions-foundations | Loss Functions Foundations | 10_Wiki/Topics | verified | self |
|
none | A | 0.95 | applied |
|
2026-05-10 | pending |
|
Loss Functions Foundations
매 한 줄
"매 loss는 task가 정한다". Regression→MSE/MAE/Huber, Classification→CE/Focal, Metric→Contrastive/Triplet, Segmentation→Dice/IoU.
매 핵심
매 회귀 (Regression)
- MSE (L2): ½(y-ŷ)². 미분 깔끔, outlier에 민감.
- MAE (L1): |y-ŷ|. robust, 0에서 미분 불가.
- Huber: |e|<δ면 MSE, 아니면 MAE. δ=1 기본.
- Log-cosh: smooth Huber. 자동 미분 친화.
- Quantile: max(τe, (τ-1)e). 중앙값/구간 예측.
매 분류 (Classification)
- BCE: -[y log p + (1-y) log(1-p)]. 이진/다중라벨.
- CE (softmax): -Σ y_k log p_k. 다중클래스.
- Focal (Lin 2017): -α(1-p)^γ log p. easy example down-weight, γ=2 기본.
- Label smoothing: y → y(1-ε) + ε/K. overconfidence 방지.
- Hinge: max(0, 1-y·ŷ). SVM. y∈{-1,+1}.
매 Metric Learning
- Contrastive (Hadsell 2006): pair. y·d² + (1-y)·max(0, m-d)².
- Triplet: max(0, d(a,p) - d(a,n) + margin).
- InfoNCE / NT-Xent (SimCLR): -log exp(sim+/τ) / Σ exp(sim/τ).
- Cosine embedding: 1 - cos(a,b).
매 Segmentation
- Dice: 1 - 2|A∩B|/(|A|+|B|). class imbalance 강함.
- IoU/Jaccard: 1 - |A∩B|/|A∪B|.
- Tversky: FP/FN weight 조정.
- Boundary loss: 거리변환 가중.
💻 패턴
Regression losses
import torch, torch.nn.functional as F
mse = F.mse_loss(pred, y)
mae = F.l1_loss(pred, y)
huber = F.huber_loss(pred, y, delta=1.0) # smooth_l1 ≈ huber(δ=1)
# Quantile
def quantile_loss(pred, y, tau=0.5):
e = y - pred
return torch.maximum(tau*e, (tau-1)*e).mean()
Classification losses
ce = F.cross_entropy(logits, y_int) # logits, not probs
bce = F.binary_cross_entropy_with_logits(logits, y_float)
# Label smoothing (built-in)
ce_ls = F.cross_entropy(logits, y_int, label_smoothing=0.1)
Focal loss (이진)
def focal_bce(logits, y, alpha=0.25, gamma=2.0):
p = torch.sigmoid(logits)
pt = torch.where(y == 1, p, 1 - p)
alpha_t = torch.where(y == 1, alpha, 1 - alpha)
return -(alpha_t * (1 - pt).pow(gamma) * pt.clamp_min(1e-8).log()).mean()
Triplet & InfoNCE
triplet = F.triplet_margin_loss(anchor, pos, neg, margin=1.0)
def info_nce(q, k_pos, k_neg, tau=0.07):
# q: (B,D), k_pos: (B,D), k_neg: (B,N,D)
pos = (q * k_pos).sum(-1, keepdim=True) / tau
neg = torch.einsum("bd,bnd->bn", q, k_neg) / tau
logits = torch.cat([pos, neg], dim=1)
target = torch.zeros(q.size(0), dtype=torch.long, device=q.device)
return F.cross_entropy(logits, target)
Dice + BCE (segmentation 표준)
def dice_loss(logits, y, eps=1e-6):
p = torch.sigmoid(logits)
inter = (p * y).sum(dim=(2, 3))
union = p.sum(dim=(2, 3)) + y.sum(dim=(2, 3))
return 1 - (2 * inter + eps) / (union + eps)
def combo_loss(logits, y):
return 0.5 * F.binary_cross_entropy_with_logits(logits, y) + dice_loss(logits, y).mean()
Class imbalance 가중
weights = torch.tensor([1.0, 5.0, 2.0]) # 클래스별
ce_w = F.cross_entropy(logits, y_int, weight=weights)
매 결정 기준
| Task | Default | 변형 |
|---|---|---|
| Regression normal | MSE | outlier→Huber, robust→MAE |
| Binary classification | BCE w/ logits | imbalance→Focal |
| Multi-class | CE w/ label smoothing | imbalance→class weights |
| Multi-label | BCE per-class | |
| Embedding learning | InfoNCE | small batch→Triplet |
| Segmentation | BCE+Dice | small object→Tversky |
| Object detection | Focal + IoU/GIoU | (RetinaNet, YOLO) |
기본값: classification CE+label smoothing 0.1, regression Huber.
🔗 Graph
- 부모: Optimization
- 변형: Focal-Loss
- 응용: Image-Classification-Mastery, Segmentation, Object-Detection
- Adjacent: Activation-Functions, Class-Imbalance, L1-and-L2-Regularization
🤖 LLM 활용
언제: task→loss 매핑, gradient 직관, 코드 템플릿 생성. 언제 X: domain-specific custom loss 설계는 검증 필수 (분포·gradient 분석).
❌ 안티패턴
softmax후nll_loss손수 (numerical) ←cross_entropy사용- BCE에
binary_cross_entropy(sigmoid(...))←_with_logits사용 - Imbalance 무시한 CE
- Dice loss만 단독 (gradient 불안정) → BCE+Dice 혼합
- Focal γ를 imbalance 없을 때 사용 (성능↓)
🧪 검증 / 중복
- Verified (Goodfellow DL ch5, Lin 2017 Focal, SimCLR, Milletari V-Net Dice). 신뢰도 A.
- Canonical for Loss-Functions-Foundations (redirect).
🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — canonical 강화, segmentation/metric 추가 |