Skip to content

Commit

Permalink
properly forward wandb group and project into metrics
Browse files Browse the repository at this point in the history
  • Loading branch information
svandenhaute committed Jul 22, 2024
1 parent 45f00fd commit 00c07a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions psiflow/learning.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ def __init__(
train_valid_split: float = 0.9,
error_thresholds_for_reset: Union[list, tuple] = (0.02, 0.2),
error_thresholds_for_discard: Union[list, tuple] = (0.03, 0.6),
wandb_project: Optional[str] = None,
wandb_group: Optional[str] = None,
wandb_project: Optional[str] = None,
initial_data: Optional[Dataset] = None,
):
self.reference = reference
Expand All @@ -124,8 +124,8 @@ def __init__(
self.error_thresholds_for_reset = list(error_thresholds_for_reset)
self.error_thresholds_for_discard = list(error_thresholds_for_discard)
self.metrics = Metrics(
wandb_project,
wandb_group,
wandb_project,
)

if initial_data is None:
Expand Down

0 comments on commit 00c07a7

Please sign in to comment.