search_space.json 362 Bytes
Newer Older
Lee's avatar
Lee committed
1
{
2
3
4
5
6
7
8
9
10
11
12
13
    "lr": {
        "_type": "choice",
        "_value": [0.1, 0.01, 0.001, 0.0001]
    },
    "optimizer": {
        "_type": "choice",
        "_value": ["SGD", "Adadelta", "Adagrad", "Adam", "Adamax"]
    },
    "model": {
        "_type": "choice",
        "_value": ["vgg", "resnet18", "googlenet", "densenet121", "mobilenet", "dpn92", "senet18"]
    }
14
}