Skip to content
Snippets Groups Projects
Commit 3e0f0895 authored by Frisinghelli Daniel's avatar Frisinghelli Daniel
Browse files

Test SGD optimizer.

parent 7642ca3a
No related branches found
No related tags found
No related merge requests found
......@@ -117,8 +117,10 @@ if __name__ == '__main__':
net = NET(state_file, inputs, outputs, filters=FILTERS)
# initialize optimizer
optimizer = torch.optim.Adam(net.parameters(), lr=LR,
weight_decay=LAMBDA)
# optimizer = torch.optim.Adam(net.parameters(), lr=LR,
# weight_decay=LAMBDA)
optimizer = torch.optim.SGD(net.parameters(), lr=LR, momentum=0.9,
weight_decay=LAMBDA)
# initialize training data
LogConfig.init_log('Initializing training data.')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment