PRISM · Statistical-Mechanics PlaygroundPRISM · 통계역학 놀이터
A diffusion model never learns the data density directly — it learns the score, the gradient ∇ log p(x) that points toward higher probability. To generate a sample you start from pure noise and follow the score downhill in energy with a dash of randomness: annealed Langevin x ← x + ½α·s(x) + √α·z, lowering the noise level as you go. Watch a cloud of noise condense onto the data.확산 모델은 데이터 밀도를 직접 배우지 않는다 — 스코어, 즉 더 높은 확률을 가리키는 기울기 ∇ log p(x)를 배운다. 표본을 생성하려면 순수한 잡음에서 시작해 약간의 무작위성과 함께 스코어를 따라 에너지의 골짜기로 내려간다: 어닐링된 Langevin x ← x + ½α·s(x) + √α·z, 진행하며 잡음 수준을 낮춘다. 잡음 구름이 데이터로 응결하는 것을 보라.
Data distribution데이터 분포
Writing p(x) ∝ e^(−E(x)), the score is ∇ log p = −∇E — exactly the physical force pulling toward low energy. A diffusion model trains a network to estimate this field by denoising, then reuses it to sample.p(x) ∝ e^(−E(x))로 쓰면 스코어는 ∇ log p = −∇E — 낮은 에너지로 끌어당기는 물리적 힘 그 자체다. 확산 모델은 노이즈 제거로 이 장을 추정하도록 신경망을 학습한 뒤, 그것을 재사용해 표본을 뽑는다.
Sampling is overdamped Langevin dynamics x ← x + ½α·s(x) + √α·z, run from a high noise level down to a low one. The annealing lets the walker cross between modes early and settle into fine detail late — the same trick as simulated annealing.표집은 과감쇠 Langevin 동역학 x ← x + ½α·s(x) + √α·z이며, 높은 잡음 수준에서 낮은 수준으로 실행한다. 어닐링 덕분에 걸음꾼은 초기에 모드 사이를 건너고 나중에 세부로 자리 잡는다 — 시뮬레이티드 어닐링과 같은 요령이다.
Score-based diffusion is state-of-the-art for medical image synthesis, MRI/CT reconstruction from undersampled scans, and generating realistic synthetic physiological signals for augmentation — a physics-sampling view of the generative representations PRISM works with.스코어 기반 확산은 의료 영상 합성, 저표본 스캔으로부터의 MRI/CT 재구성, 증강을 위한 사실적 합성 생리 신호 생성에서 최고 수준이다 — PRISM이 다루는 생성적 표현을 물리 표집의 관점에서 본 것이다.