Skip to content

Commit

Permalink
model argument to 2 from 4
Browse files Browse the repository at this point in the history
  • Loading branch information
beckynevin committed Mar 18, 2024
1 parent 7da4a5d commit f1ab0d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def model_setup_DE(loss_type, DEVICE):#, INIT_LR=0.001):
Layer = MuVarLayer
lossFn = loss_bnll
#opt = torch.optim.Adam(model.parameters(), lr=INIT_LR)
model = torch.nn.Sequential(Model(4), Layer())
model = torch.nn.Sequential(Model(2), Layer())
model = model.to(DEVICE)
return model, lossFn#, opt

Expand Down

0 comments on commit f1ab0d1

Please sign in to comment.