ryenchen

Results 2 comments of ryenchen

凝固度还是Matrix67那篇文章,计算联合概率

conv2d_layer_one = tf.contrib.layers.convolution2d( float_image_batch, #num_output_channels=32, # The number of filters to generate num_outputs=32, kernel_size=(5,5), # It's only the filter height and width. activation_fn=tf.nn.relu, #weight_init=tf.random_normal, weights_initializer=tf.random_normal_initializer(), stride=(2, 2), trainable=True) my updated...