.. This file is generated by scripts/render_model_docs.py. Do not edit by hand. Wildfire Forecasting ==================== Overview -------- ``wildfire_forecasting`` is a compact GRU-attention forecaster for weekly wildfire activity windows. At a Glance ----------- .. grid:: 1 2 4 4 :gutter: 2 :class-container: catalog-grid .. grid-item-card:: Hazard Family :class-card: catalog-stat-card .. container:: catalog-stat-value Wildfire .. container:: catalog-stat-note Public catalog grouping used for this model. .. grid-item-card:: Maturity :class-card: catalog-stat-card .. container:: catalog-stat-value Implemented .. container:: catalog-stat-note Catalog maturity label used on the index page. .. grid-item-card:: Tasks :class-card: catalog-stat-card .. container:: catalog-stat-value 1 .. container:: catalog-stat-note Forecasting .. grid-item-card:: Benchmark Family :class-card: catalog-stat-card .. container:: catalog-stat-value :doc:`Wildfire Benchmark ` .. container:: catalog-stat-note Primary benchmark-family link used for compatible evaluation coverage. Description ----------- ``wildfire_forecasting`` is a compact GRU-attention forecaster for weekly wildfire activity windows. The PyHazards implementation targets smoke-testable next-window size-group prediction through the shared wildfire benchmark flow. Benchmark Compatibility ----------------------- **Primary benchmark family:** :doc:`Wildfire Benchmark ` External References ------------------- **Paper:** `Wildfire Danger Prediction and Understanding with Deep Learning `_ | **Repo:** `Repository `__ Registry Name ------------- Primary entrypoint: ``wildfire_forecasting`` Supported Tasks --------------- - Forecasting Programmatic Use ---------------- .. code-block:: python import torch from pyhazards.models import build_model model = build_model( name="wildfire_forecasting", task="forecasting", input_dim=7, output_dim=5, lookback=12, ) preds = model(torch.randn(2, 12, 7)) print(preds.shape) Notes ----- - This public adapter is exercised on the weekly wildfire smoke benchmark.