최상위 10_Wiki/Topic_*였던 4개 카테고리 폴더를 10_Wiki/Topics/Topic_* 로 재배치.
콘텐츠 변경 없음(순수 폴더 이동) — Topics/ 하위 나머지 폴더는 이미 지난 커밋에서
전부 정리된 상태(잔존 항목은 에이전트 운영 상태 및 사용자가 보존을 요청한
업데이트0615/무제 3.canvas 뿐).
"매 시간 축 위의 dependency가 modeling target". ARIMA의 classical 1970s 시대를 거쳐, 2020s에 Transformer-based foundation models (TimeGPT, Chronos, Moirai) 가 zero-shot forecasting을 가능케 했다. 매 2026 현재 hybrid (statistical + neural) 가 production default.
매 핵심
매 components
Trend: long-term direction.
Seasonality: periodic (daily, weekly, yearly).
Cyclic: aperiodic fluctuations.
Residual: noise / unexplained.
매 stationarity
Strict / weak stationarity 의 distinction.
ADF, KPSS test 로 확인.
Differencing, log transform, Box-Cox 로 stationarize.
fromchronosimportChronosPipelineimporttorchpipe=ChronosPipeline.from_pretrained("amazon/chronos-t5-large",device_map="cuda",torch_dtype=torch.bfloat16,)context=torch.tensor(history)# no fine-tuneforecast=pipe.predict(context,prediction_length=24,num_samples=20)median=forecast.median(dim=1).values