Skip to content

Commit

Permalink
Make write_initial_state default to true
Browse files Browse the repository at this point in the history
  • Loading branch information
b8raoult committed Nov 29, 2024
1 parent 7ea4af7 commit 4ea4b3d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/configs/top-level.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ write_initial_state:

The ``write_initial_state`` option specifies whether to write the
initial state to the output (i.e. "step zero" of the forecast). Default
is ``false``.
is ``true``.

allow_nans:
===========
Expand Down
2 changes: 1 addition & 1 deletion src/anemoi/inference/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class Config:
use_grib_paramid: bool = False
"""If True, the runner will use the grib parameter ID when generating MARS requests."""

write_initial_state: bool = False
write_initial_state: bool = True
"""Wether to write the initial state to the output file. If the model is multi-step, only fields at the forecast reference date are
written."""

Expand Down

0 comments on commit 4ea4b3d

Please sign in to comment.