Spaces:
Paused
Paused
File size: 11,196 Bytes
1672b09 4079463 1672b09 c9a5d41 1672b09 c9a5d41 1672b09 6e588f3 1672b09 4079463 1672b09 a2329aa 1672b09 6e588f3 1672b09 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 | """
train.py — TriChronos-0.1B
AdamW + cosine LR schedule + BF16 autocast training loop.
Hard wall-clock cutoff: 7h10m (25,800 seconds)
→ saves checkpoint, pauses the HF Space, then exits cleanly.
Usage
-----
python train.py [--resume] [--steps N] [--batch-size B]
Environment variables (set by HF Spaces)
-----------------------------------------
SPACE_ID : "username/space-name" (required for pause_space)
HF_TOKEN : Hugging Face write token
"""
from __future__ import annotations
import argparse
import os
import signal
import sys
import time
from pathlib import Path
from typing import Optional
import torch
import torch.nn as nn
from torch.utils.data import DataLoader
from data_pipeline import LOTSAStreamDataset, collate_fn, FORECAST_HORIZON, PATCH_SIZE
from model import TriChronos, QUANTILE_LEVELS
# ---------------------------------------------------------------------------
# Hyper-parameters
# ---------------------------------------------------------------------------
WALL_CLOCK_LIMIT: float = 7 * 3600 + 10 * 60 # 7 h 10 m in seconds
CHECKPOINT_DIR: Path = Path("checkpoints")
LOG_EVERY: int = 100 # log every N steps
SAVE_EVERY: int = 5_000 # checkpoint every N steps (fewer 1.2GB uploads = more train time)
DEFAULT_LR: float = 3e-4
DEFAULT_WEIGHT_DECAY: float = 1e-2
DEFAULT_WARMUP_STEPS: int = 2_000
DEFAULT_MAX_STEPS: int = 150_000 # ~one 7h L40S session; lets cosine LR fully anneal within budget
DEFAULT_BATCH_SIZE: int = 32
DEFAULT_GRAD_CLIP: float = 1.0
# ---------------------------------------------------------------------------
# Quantile (pinball) loss
# ---------------------------------------------------------------------------
def quantile_loss(
preds: torch.Tensor, # (B, horizon, n_quantiles)
targets: torch.Tensor, # (B, horizon)
quantile_levels: list,
) -> torch.Tensor:
"""
Pinball / quantile loss averaged over all quantiles, horizons, and batch.
L(q, y, ŷ) = q·max(y-ŷ, 0) + (1-q)·max(ŷ-y, 0)
"""
tau = torch.tensor(quantile_levels, dtype=preds.dtype, device=preds.device)
# targets: (B, horizon) → (B, horizon, 1) for broadcasting
y = targets.unsqueeze(-1)
errors = y - preds # (B, horizon, n_quantiles)
loss = torch.max(tau * errors, (tau - 1.0) * errors)
return loss.mean()
# ---------------------------------------------------------------------------
# Learning rate schedule
# ---------------------------------------------------------------------------
def get_lr(step: int, warmup_steps: int, max_steps: int, max_lr: float) -> float:
"""Linear warmup then cosine decay to 10% of peak LR."""
import math
if step < warmup_steps:
return max_lr * step / max(1, warmup_steps)
if step >= max_steps:
return max_lr * 0.1
progress = (step - warmup_steps) / max(1, max_steps - warmup_steps)
return max_lr * 0.1 + 0.5 * (max_lr - max_lr * 0.1) * (1 + math.cos(math.pi * progress))
# ---------------------------------------------------------------------------
# Checkpoint helpers
# ---------------------------------------------------------------------------
def save_checkpoint(
model: TriChronos,
optimizer: torch.optim.Optimizer,
step: int,
loss: float,
directory: Path,
):
directory.mkdir(parents=True, exist_ok=True)
torch.save(model.state_dict(), directory / "model_state.pt")
torch.save(optimizer.state_dict(), directory / "optimizer_state.pt")
(directory / "step.txt").write_text(f"{step}\n")
(directory / "loss.txt").write_text(f"{loss:.6f}\n")
print(f"[step {step}] Checkpoint saved to {directory}", flush=True)
# Sync checkpoint to HF Dataset repo if bucket ID is configured
bucket_id = os.environ.get("CHECKPOINT_BUCKET_ID", "")
hf_token = os.environ.get("HF_TOKEN", "")
if bucket_id and hf_token:
try:
from huggingface_hub import HfApi
api = HfApi(token=hf_token)
api.upload_folder(
folder_path=str(directory),
repo_id=bucket_id,
repo_type="dataset",
commit_message=f"Checkpoint step {step} (loss={loss:.4f})",
)
print(f"[step {step}] Synced checkpoint to HF Dataset {bucket_id}", flush=True)
except Exception as exc:
print(f"[step {step}] Warning: HF Dataset checkpoint sync failed: {exc}", flush=True)
def load_checkpoint(
model: TriChronos,
optimizer: torch.optim.Optimizer,
directory: Path,
) -> int:
"""Load checkpoint; return the step to resume from (0 if none found)."""
if not (directory / "model_state.pt").exists():
print("No checkpoint found — starting from scratch.", flush=True)
return 0
model.load_state_dict(torch.load(directory / "model_state.pt", map_location="cpu"))
optimizer.load_state_dict(torch.load(directory / "optimizer_state.pt", map_location="cpu"))
step = int((directory / "step.txt").read_text().strip())
print(f"Resumed from checkpoint at step {step}", flush=True)
return step
# ---------------------------------------------------------------------------
# HF Space auto-pause
# ---------------------------------------------------------------------------
def pause_hf_space():
"""
Pause the Hugging Face Space this script is running in.
No-op if SPACE_ID is not set (e.g., local runs).
"""
space_id = os.environ.get("TRICHRONOS_SPACE_ID", "")
hf_token = os.environ.get("HF_TOKEN", "")
if not space_id:
print("[pause_hf_space] SPACE_ID not set — skipping Space pause.", flush=True)
return
try:
from huggingface_hub import pause_space
pause_space(space_id, token=hf_token or None)
print(f"[pause_hf_space] Space '{space_id}' paused successfully.", flush=True)
except Exception as exc:
print(f"[pause_hf_space] Failed to pause space: {exc}", flush=True)
# ---------------------------------------------------------------------------
# Training loop
# ---------------------------------------------------------------------------
def train(args: argparse.Namespace):
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
print(f"Device: {device}", flush=True)
# ---- Model ----
model = TriChronos(
patch_size=PATCH_SIZE,
horizon=FORECAST_HORIZON,
).to(device)
print(f"Parameters: {model.count_params():,}", flush=True)
# ---- Optimizer ----
optimizer = torch.optim.AdamW(
model.parameters(),
lr=DEFAULT_LR,
weight_decay=DEFAULT_WEIGHT_DECAY,
betas=(0.9, 0.95),
)
# ---- Resume ----
start_step = 0
if args.resume:
start_step = load_checkpoint(model, optimizer, CHECKPOINT_DIR)
# ---- Dataset ----
dataset = LOTSAStreamDataset(
subsets=None, # stream all LOTSA subsets
split="train",
patch_size=PATCH_SIZE,
horizon=FORECAST_HORIZON,
max_patches=64,
)
loader = DataLoader(
dataset,
batch_size=args.batch_size,
collate_fn=collate_fn,
num_workers=min(4, os.cpu_count() or 1),
pin_memory=(device.type == "cuda"),
)
# ---- AMP scaler (for BF16 we don't need GradScaler, but keep for FP16 compat) ----
use_bf16 = device.type == "cuda" and torch.cuda.is_bf16_supported()
amp_dtype = torch.bfloat16 if use_bf16 else torch.float16
scaler = torch.amp.GradScaler("cuda", enabled=(amp_dtype == torch.float16))
# ---- Training state ----
step = start_step
max_steps = args.steps
t_start = time.time()
running_loss = 0.0
best_loss = float("inf")
# ---- SIGTERM handler (HF Spaces sends SIGTERM on preemption) ----
def _graceful_exit(signum, frame):
print(f"\n[SIGTERM] Saving checkpoint at step {step} …", flush=True)
save_checkpoint(model, optimizer, step, running_loss, CHECKPOINT_DIR)
pause_hf_space()
sys.exit(0)
signal.signal(signal.SIGTERM, _graceful_exit)
# ---- Main loop ----
model.train()
print("Training started …", flush=True)
for batch in loader:
if step >= max_steps:
print(f"Reached max_steps={max_steps}. Stopping.", flush=True)
break
# --- Wall-clock cutoff ---
elapsed = time.time() - t_start
if elapsed >= WALL_CLOCK_LIMIT:
print(
f"\n⏰ Wall-clock limit reached ({elapsed/3600:.2f} h). "
"Saving checkpoint and pausing Space …",
flush=True,
)
save_checkpoint(model, optimizer, step, running_loss, CHECKPOINT_DIR)
pause_hf_space()
sys.exit(0)
# --- LR update ---
lr = get_lr(step, DEFAULT_WARMUP_STEPS, max_steps, DEFAULT_LR)
for pg in optimizer.param_groups:
pg["lr"] = lr
# --- Forward pass ---
patches = batch["patches"].to(device, non_blocking=True) # (B, n_patches, patch_size)
targets = batch["targets"].to(device, non_blocking=True) # (B, horizon)
optimizer.zero_grad(set_to_none=True)
with torch.autocast(device_type=device.type, dtype=amp_dtype):
preds = model(patches) # (B, horizon, n_quantiles)
loss = quantile_loss(preds, targets, model.quantile_levels)
scaler.scale(loss).backward()
scaler.unscale_(optimizer)
nn.utils.clip_grad_norm_(model.parameters(), DEFAULT_GRAD_CLIP)
scaler.step(optimizer)
scaler.update()
running_loss = loss.item()
step += 1
# --- Logging ---
if step % LOG_EVERY == 0:
elapsed_h = (time.time() - t_start) / 3600
budget_pct = elapsed / WALL_CLOCK_LIMIT * 100
print(
f"step={step:7d} loss={running_loss:.4f} lr={lr:.2e}"
f" elapsed={elapsed_h:.2f}h budget={budget_pct:.1f}%",
flush=True,
)
# --- Periodic checkpoint ---
if step % SAVE_EVERY == 0:
if running_loss < best_loss:
best_loss = running_loss
save_checkpoint(model, optimizer, step, running_loss, CHECKPOINT_DIR)
# ---- End of training ----
save_checkpoint(model, optimizer, step, running_loss, CHECKPOINT_DIR)
print(f"Training complete at step {step}. Best loss: {best_loss:.4f}", flush=True)
# ---------------------------------------------------------------------------
# Entry point
# ---------------------------------------------------------------------------
def parse_args() -> argparse.Namespace:
p = argparse.ArgumentParser(description="Train TriChronos-0.1B")
p.add_argument("--resume", action="store_true", help="Resume from checkpoint")
p.add_argument("--steps", type=int, default=DEFAULT_MAX_STEPS, help="Max training steps")
p.add_argument("--batch-size", type=int, default=DEFAULT_BATCH_SIZE, help="Batch size")
return p.parse_args()
if __name__ == "__main__":
train(parse_args())
|