Skip to content

Commit

Permalink
change type of default logger_url in config
Browse files Browse the repository at this point in the history
  • Loading branch information
khintz committed Dec 9, 2024
1 parent 2620bd1 commit 75a39e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion neural_lam/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class TrainingConfig:
] = dataclasses.field(default_factory=UniformFeatureWeighting)

logger: str = "wandb"
logger_url: str = None
logger_url: str = ""


@dataclasses.dataclass
Expand Down
2 changes: 1 addition & 1 deletion tests/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def test_config_serialization(state_weighting_config):
config_path: ""
training:
logger: wandb
logger_url: https://wandb.ai
logger_url: ""
state_feature_weighting:
__config_class__: ManualStateFeatureWeighting
weights:
Expand Down

0 comments on commit 75a39e6

Please sign in to comment.