Correct weight decay of DARTS from 5e-4 to 3e-4

This commit is contained in:
D-X-Y 2020-03-10 14:24:18 -07:00
parent d783193392
commit 2964bda731
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
"warmup" : ["int", "5"],
"optim" : ["str", "SGD"],
"LR" : ["float", "0.025"],
"decay" : ["float", "0.0005"],
"decay" : ["float", "0.0003"],
"momentum" : ["float", "0.9"],
"nesterov" : ["bool", "1"],
"criterion": ["str", "Softmax"],

View File

@ -5,7 +5,7 @@
"epochs" : ["int", "50"],
"warmup" : ["int", "0"],
"optim" : ["str", "SGD"],
"decay" : ["float", "0.0005"],
"decay" : ["float", "0.0003"],
"momentum" : ["float", "0.9"],
"nesterov" : ["bool", "1"],
"criterion": ["str", "Softmax"],