Estimate memory requirements for TimesFM
masterYou can estimate required RAM using the following formula:
RAM ≈ model_weights + 0.5 GB + (0.2 MB × num_series × context_length / 1000)
Key Constants for TimesFM 2.5 (200M):
model_weights: ~800 MBcontext_length: Yourmax_contextvaluenum_series: Number of time series in your batch
GPU VRAM considerations:
- Model weights: ~800 MB
- KV cache + activations: ~200–500 MB (scales with context)
- Batch buffers: ~100 MB per 100 series at
context=1024.