Skip to content

Commit

Permalink
Fix two small mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
tmke8 committed Oct 6, 2023
1 parent 077a1cf commit 10d1d6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ alg:
steps: 30000
use_amp: true
pred:
lr: ${ ae lr }
lr: ${ ae.lr }
log_freq: 100000000000 # never
val_freq: 1000

Expand Down
2 changes: 1 addition & 1 deletion src/algs/adv/supmatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def _get_data_iterators(self, dm: DataModule) -> tuple[IterTr, IterDep]:
if dm.deployment_ids is None:
logger.warning(
"Support matching is enabled but without any balancing of the deployment set "
"- this can be achieved either by setting 'deployment_ids'."
"- this can be achieved by setting 'deployment_ids'."
)
dl_tr = dm.train_dataloader(balance=True)
# The batch size needs to be consistent for the aggregation layer in the setwise neural
Expand Down

0 comments on commit 10d1d6e

Please sign in to comment.