Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
NikoOinonen committed Nov 27, 2023
1 parent 1db8682 commit 1f15888
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/integration_tests/test_train_posnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ def make_model(device, cfg):
decoder_z_sizes=[5, 10, outsize],
z_outs=[3, 3, 5, 8],
peak_std=cfg["peak_std"],
).to(device)
device=device
)
criterion = nn.MSELoss(reduction="mean")
optimizer = optim.Adam(model.parameters(), lr=cfg["lr"])
lr_decay_rate = 1e-5
Expand Down

0 comments on commit 1f15888

Please sign in to comment.