searchspace.json 4.28 KB
Newer Older
1
{
2
3
4
5
6
7
8
    "handwrite/__line6/choice": {
        "_type": "choice",
        "_value": [
            "foo",
            "bar"
        ]
    },
9
10
    "handwrite/conv_size/choice": {
        "_type": "choice",
11
12
13
14
15
16
        "_value": [
            2,
            3,
            5,
            7
        ]
17
    },
18
    "handwrite/abc/choice": {
19
        "_type": "choice",
20
21
22
23
24
25
        "_value": [
            "2",
            3,
            "(5 * 6)",
            7
        ]
26
    },
27
28
29
30
31
32
33
34
35
36
37
38
39
40
    "handwrite/__line9/function_choice": {
        "_type": "choice",
        "_value": [
            "max_pool",
            "h_conv1",
            "avg_pool"
        ]
    },
    "handwrite/max_pool/function_choice": {
        "_type": "choice",
        "_value": [
            "max_pool(h_conv1)",
            "avg_pool(h_conv2, h_conv3)"
        ]
41
    },
42
    "handwrite/max_poo/function_choice": {
43
        "_type": "choice",
44
45
46
47
48
49
50
51
52
53
54
55
56
        "_value": [
            "max_poo(h_conv1)",
            "(2 * 3 + 4)",
            "(lambda x: 1 + x)"
        ]
    },
    "handwrite/__line19/qlognormal": {
        "_type": "qlognormal",
        "_value": [
            1.2,
            3,
            4.5
        ]
57
58
59
    },
    "mnist/self.conv_size/choice": {
        "_type": "choice",
60
61
62
63
64
65
        "_value": [
            2,
            3,
            5,
            7
        ]
66
67
68
    },
    "mnist/self.hidden_size/choice": {
        "_type": "choice",
69
70
71
72
73
        "_value": [
            124,
            512,
            1024
        ]
74
75
76
    },
    "mnist/self.learning_rate/randint": {
        "_type": "randint",
77
78
79
80
81
        "_value": [
            2,
            3,
            5
        ]
82
83
84
    },
    "mnist/tf.nn.relu/function_choice": {
        "_type": "choice",
85
86
87
88
89
        "_value": [
            "tf.nn.relu(conv2d(x_image, W_conv1) + b_conv1)",
            "tf.nn.sigmoid(conv2d(x_image, W_conv1) + b_conv1)",
            "tf.nn.tanh(conv2d(x_image, W_conv1) + b_conv1)"
        ]
90
91
92
    },
    "mnist/max_pool/function_choice": {
        "_type": "choice",
93
94
95
96
        "_value": [
            "max_pool(h_conv1, self.pool_size)",
            "avg_pool(h_conv1, self.pool_size)"
        ]
97
98
99
    },
    "mnist/batch_size/choice": {
        "_type": "choice",
100
101
102
103
104
        "_value": [
            50,
            250,
            500
        ]
105
106
107
    },
    "mnist/dropout_rate/choice": {
        "_type": "choice",
108
109
110
111
        "_value": [
            1,
            5
        ]
112
113
114
    },
    "dir.simple/conv_size/choice": {
        "_type": "choice",
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
        "_value": [
            2,
            3,
            5,
            7
        ]
    },
    "dir.simple/abc/choice": {
        "_type": "choice",
        "_value": [
            "2",
            3,
            "(5 * 6)",
            "{(1): 2, '3': 4}",
            "[1, 2, 3]"
        ]
131
132
133
    },
    "dir.simple/max_pool/function_choice": {
        "_type": "choice",
134
135
136
137
138
139
140
141
142
143
144
145
        "_value": [
            "max_pool(h_conv1)",
            "avg_pool(h_conv2, h_conv3)"
        ]
    },
    "dir.simple/max_poo/function_choice": {
        "_type": "choice",
        "_value": [
            "max_poo(h_conv1)",
            "(2 * 3 + 4)",
            "(lambda x: 1 + x)"
        ]
Zejun Lin's avatar
Zejun Lin committed
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
    },
    "nas/mutable_block_39": {
        "_type": "mutable_layer",
        "_value": {
            "mutable_layer_0": {
                "layer_choice": [
                    "add_one()",
                    "add_two()",
                    "add_three()",
                    "add_four()"
                ],
                "optional_inputs": [
                    "images"
                ],
                "optional_input_size": 1
            },
            "mutable_layer_1": {
                "layer_choice": [
                    "add_one()",
                    "add_two()",
                    "add_three()",
                    "add_four()"
                ],
                "optional_inputs": [
                    "layer_1_out"
                ],
                "optional_input_size": 1
            },
            "mutable_layer_2": {
                "layer_choice": [
                    "add_one()",
                    "add_two()",
                    "add_three()",
                    "add_four()"
                ],
                "optional_inputs": [
                    "layer_1_out",
                    "layer_2_out"
                ],
                "optional_input_size": 1
            }
        }
188
    }
189
}