We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a37ad2 commit 617d7b6Copy full SHA for 617d7b6
src/zeroband/train.py
@@ -96,6 +96,7 @@ class Config(BaseConfig):
96
project: str = "zeroband"
97
run_id: str | None = None
98
metric_logger_type: Literal["wandb", "dummy"] = "wandb"
99
+ wandb_resume: bool = False
100
101
# sub config
102
diloco: DilocoConfig | None = None
@@ -289,7 +290,7 @@ def train(config: Config):
289
290
metric_logger = logger_cls(
291
project=config.project,
292
config={"config": config.model_dump(), "world_info": world_info.json()},
- resume=False,
293
+ resume=config.wandb_resume,
294
)
295
296
if config.train.memory_monitor:
0 commit comments