update ENAS

This commit is contained in:
D-X-Y
2019-11-09 01:36:31 +11:00
parent 1da5b49018
commit 34ba8053de
7 changed files with 533 additions and 12 deletions

View File

@@ -0,0 +1,17 @@
{
"scheduler": ["str", "cos"],
"LR" : ["float", "0.05"],
"eta_min" : ["float", "0.0005"],
"epochs" : ["int", "310"],
"T_max" : ["int", "10"],
"warmup" : ["int", "0"],
"optim" : ["str", "SGD"],
"decay" : ["float", "0.00025"],
"momentum" : ["float", "0.9"],
"nesterov" : ["bool", "1"],
"controller_lr" : ["float", "0.001"],
"controller_betas": ["float", [0, 0.999]],
"controller_eps" : ["float", 0.001],
"criterion": ["str", "Softmax"],
"batch_size": ["int", "128"]
}