Skip to content

Commit

Permalink
Fixed upsampling
Browse files Browse the repository at this point in the history
  • Loading branch information
Subodh Malgonde authored and Subodh Malgonde committed Dec 21, 2017
1 parent 19c543e commit f35cba8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def layers(vgg_layer3_out, vgg_layer4_out, vgg_layer7_out, is_training, num_clas
new_final_layer_upsampled_8x = tf.layers.conv2d_transpose(out, filters=num_classes, kernel_size=(16, 16),
strides=(8, 8), name="new_final_layer_upsampled_8x",
kernel_initializer=tf.truncated_normal_initializer(stddev=0.01),
activation=tf.nn.relu)
padding='same')

return new_final_layer_upsampled_8x

Expand Down

0 comments on commit f35cba8

Please sign in to comment.