Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tinker_cookbook/utils/ml_log.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ def __init__(
def log_hparams(self, config: Any) -> None:
"""Log hyperparameters to wandb."""
if self.run and wandb is not None:
wandb.config.update(dump_config(config))
wandb.config.update(dump_config(config), allow_val_change=True)

def log_metrics(self, metrics: Dict[str, Any], step: int | None = None) -> None:
"""Log metrics to wandb."""
Expand Down
Loading