Skip to content

Commit

Permalink
Disable slow metrics during train/val by default
Browse files Browse the repository at this point in the history
  • Loading branch information
roman-bushuiev committed Feb 10, 2025
1 parent 12344ab commit 6bf9ee7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions massspecgym/models/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ def __init__(
self,
lr: float = 1e-4,
weight_decay: float = 0.0,
log_only_loss_at_stages: T.Sequence[Stage | str] = (),
no_mces_metrics_at_stages: T.Sequence[Stage | str] = (),
log_only_loss_at_stages: T.Sequence[Stage | str] = (Stage.TRAIN),
no_mces_metrics_at_stages: T.Sequence[Stage | str] = (Stage.VAL),
bootstrap_metrics: bool = False,
df_test_path: T.Optional[str | Path] = None,
**kwargs
Expand Down

0 comments on commit 6bf9ee7

Please sign in to comment.