gitextract_oox45t84/ ├── .gitattributes ├── .github/ │ └── workflows/ │ ├── main.yml │ └── manual_publish.yml ├── .gitignore ├── AGENTS.md ├── LICENSE ├── README.md ├── pyproject.toml ├── requirements.txt ├── src/ │ └── timesfm/ │ ├── __init__.py │ ├── configs.py │ ├── flax/ │ │ ├── __init__.py │ │ ├── dense.py │ │ ├── normalization.py │ │ ├── transformer.py │ │ └── util.py │ ├── timesfm_2p5/ │ │ ├── timesfm_2p5_base.py │ │ ├── timesfm_2p5_flax.py │ │ └── timesfm_2p5_torch.py │ ├── torch/ │ │ ├── __init__.py │ │ ├── dense.py │ │ ├── normalization.py │ │ ├── transformer.py │ │ └── util.py │ └── utils/ │ └── xreg_lib.py ├── timesfm-forecasting/ │ ├── SKILL.md │ ├── examples/ │ │ ├── anomaly-detection/ │ │ │ ├── detect_anomalies.py │ │ │ └── output/ │ │ │ └── anomaly_detection.json │ │ ├── covariates-forecasting/ │ │ │ ├── demo_covariates.py │ │ │ └── output/ │ │ │ ├── covariates_metadata.json │ │ │ └── sales_with_covariates.csv │ │ └── global-temperature/ │ │ ├── README.md │ │ ├── generate_animation_data.py │ │ ├── generate_gif.py │ │ ├── generate_html.py │ │ ├── output/ │ │ │ ├── animation_data.json │ │ │ ├── forecast_output.csv │ │ │ ├── forecast_output.json │ │ │ └── interactive_forecast.html │ │ ├── run_example.sh │ │ ├── run_forecast.py │ │ ├── temperature_anomaly.csv │ │ └── visualize_forecast.py │ ├── references/ │ │ ├── api_reference.md │ │ ├── data_preparation.md │ │ └── system_requirements.md │ └── scripts/ │ ├── check_system.py │ └── forecast_csv.py └── v1/ ├── LICENSE ├── README.md ├── TROUBLESHOOTING.md ├── docs/ │ └── contributing.md ├── experiments/ │ ├── baselines/ │ │ ├── __init__.py │ │ └── timegpt_pipeline.py │ ├── extended_benchmarks/ │ │ ├── README.md │ │ ├── run_timegpt.py │ │ ├── run_timesfm.py │ │ └── utils.py │ └── long_horizon_benchmarks/ │ ├── README.md │ └── run_eval.py ├── notebooks/ │ ├── covariates.ipynb │ ├── finetuning.ipynb │ └── finetuning_torch.ipynb ├── peft/ │ ├── README.md │ ├── finetune.py │ ├── finetune.sh │ └── usage.ipynb ├── pyproject.toml ├── src/ │ ├── adapter/ │ │ ├── __init__.py │ │ ├── dora_layers.py │ │ ├── lora_layers.py │ │ └── utils.py │ ├── finetuning/ │ │ ├── __init__.py │ │ ├── finetuning_example.py │ │ └── finetuning_torch.py │ └── timesfm/ │ ├── __init__.py │ ├── data_loader.py │ ├── patched_decoder.py │ ├── pytorch_patched_decoder.py │ ├── time_features.py │ ├── timesfm_base.py │ ├── timesfm_jax.py │ ├── timesfm_torch.py │ └── xreg_lib.py └── tests/ └── test_timesfm.py