최상위 10_Wiki/Topic_*였던 4개 카테고리 폴더를 10_Wiki/Topics/Topic_* 로 재배치.
콘텐츠 변경 없음(순수 폴더 이동) — Topics/ 하위 나머지 폴더는 이미 지난 커밋에서
전부 정리된 상태(잔존 항목은 에이전트 운영 상태 및 사용자가 보존을 요청한
업데이트0615/무제 3.canvas 뿐).
"매 historical data 로 future outcomes 예측 — regression, classification, time series 의 union". 1990s statistics 에서 출발해 2010s ML 으로 mainstream, 2026 currently transformer-based forecasting (TimesFM, Chronos) 이 tabular 와 sequence 에서 공존. Business intelligence, supply chain, churn, fraud 의 매 backbone.
Time series with TimesFM (foundation model, zero-shot)
importtimesfmtfm=timesfm.TimesFm(hparams=timesfm.TimesFmHparams(backend="gpu",per_core_batch_size=32),checkpoint=timesfm.TimesFmCheckpoint(huggingface_repo_id="google/timesfm-2.0-500m"),)forecast,_=tfm.forecast(inputs=[history_series],# list of np.arrayfreq=[0],# 0=high freq, 1=med, 2=lowhorizon_len=96,)
Prophet (interpretable seasonality)
fromprophetimportProphetm=Prophet(yearly_seasonality=True,weekly_seasonality=True,changepoint_prior_scale=0.05)m.add_country_holidays(country_name="US")m.fit(df)# df with ds, y columnsfuture=m.make_future_dataframe(periods=90)fcst=m.predict(future)# yhat, yhat_lower, yhat_upper
fromsklearn.calibrationimportCalibratedClassifierCVcalibrated=CalibratedClassifierCV(base_model,method="isotonic",cv="prefit")calibrated.fit(X_va,y_va)# Brier score + reliability diagram on test