PRISM · Statistical-Mechanics PlaygroundPRISM · 통계역학 놀이터
A residual layer h ← h + f(h) is one Euler step of an ODE dh/dt = f(h,t). A Neural ODE takes the limit: infinitely many infinitesimal layers, so the forward pass is integrating a vector field and depth is just how long you flow. Watch the field carry two classes into a new shape — and hit the wall where a 2-D flow can't help.잔차 층 h ← h + f(h)는 ODE dh/dt = f(h,t)의 오일러 한 스텝이다. 뉴럴 ODE는 그 극한이다: 무한히 많은 무한소 층 — 순전파는 벡터장을 적분하는 것이고 깊이는 얼마나 오래 흐르느냐일 뿐이다. 벡터장이 두 클래스를 새로운 모양으로 실어 나르는 것을, 그리고 2차원 흐름이 통하지 않는 벽을 지켜보라.
Dataset데이터셋
Vector field f(h)벡터장 f(h)
Solver솔버
A residual block computes h_{k+1} = h_k + f(h_k) — exactly one Euler step of dh/dt = f(h,t) with step size 1. Stacking blocks integrates the ODE; the Neural ODE takes the continuous limit, so an adaptive solver replaces the layers and "depth" is the integration time T.잔차 블록은 h_{k+1} = h_k + f(h_k)를 계산한다 — 스텝 크기 1인 dh/dt = f(h,t)의 오일러 한 스텝 그대로다. 블록을 쌓는 것은 ODE를 적분하는 것이고, 뉴럴 ODE는 그 연속 극한을 취해 적응형 솔버가 층을 대체하며 "깊이"는 적분 시간 T가 된다.
An ODE flow is a smooth, invertible map — trajectories can never cross. So a Neural ODE cannot turn nested rings into linearly separable data in the same dimension. Augmented Neural ODEs add extra dimensions to give the flow room, exactly as toggling +1D here rescues the rings.ODE 흐름은 매끄럽고 가역인 사상이라 궤적이 절대 교차하지 않는다. 그래서 뉴럴 ODE는 같은 차원에서 내포된 동심원을 선형 분리 가능하게 만들 수 없다. Augmented Neural ODE는 여분의 차원을 더해 흐름에 공간을 주며, 여기서 +1D를 켜는 것이 동심원을 구제하는 것과 정확히 같다.
Because time is continuous, Neural ODEs handle irregularly-sampled and missing data natively — the reason Latent ODEs and ODE-RNNs are used for ICU vitals, EHR trajectories, and physiological signals that arrive at odd intervals. The latent state is a continuous-time representation of the patient — close to PRISM's neural-signal modeling.시간이 연속이므로 뉴럴 ODE는 불규칙 표집과 결측 데이터를 자연스럽게 다룬다 — Latent ODE와 ODE-RNN이 ICU 활력징후, EHR 궤적, 불규칙한 간격으로 들어오는 생리 신호에 쓰이는 이유다. 잠재 상태는 환자에 대한 연속시간 표현이며, PRISM의 신경신호 모델링과 맞닿아 있다.