def conv2d(x, W): return tf.nn.conv2d(x, W, strides=[1, 1, 1, 1], padding='SAME') def conv_layer(input, shape): W = weight_variable(shape) b ...
確定! 回上一頁