updated TF backend - redundant line in deconv3d causing errors (#67)

This commit is contained in:
Anthony
2017-04-12 02:08:42 -04:00
committed by Michael Oliver
parent d83277f683
commit 4d33b69fd8
3 changed files with 0 additions and 1 deletions
Vendored
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
@@ -109,7 +109,6 @@ def deconv3d(x, kernel, output_shape, strides=(1, 1, 1),
x = _preprocess_conv3d_input(x, data_format)
output_shape = _preprocess_deconv_output_shape(x, output_shape,
data_format)
kernel = _preprocess_conv3d_kernel(kernel, data_format)
kernel = tf.transpose(kernel, (0, 1, 2, 4, 3))
padding = _preprocess_padding(padding)
strides = (1,) + strides + (1,)