-
-
Save mohit1349/2f1232e9d8d9a8a2f1d1f617f7307653 to your computer and use it in GitHub Desktop.
Revisions
-
akiross revised this gist
Mar 30, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -678,7 +678,7 @@ "source": [ "# Transposed convolution (\"deconvolution\")\n", "\n", "A transposed convolution (a.k.a fractionally strided convolution, backward convolution or deconvolution) swaps the sizes of the input and the output of a regular convolution: if you convolve an input of size 4x4 with a kernel 3x3 and method VALID, you get a 2x2 output. The transpose of this convolution takes a 2x2 input and applies a 3x3 kernel to produce a 4x4 output.\n", "\n", "Let's start by seeing how it is done in TF. The `tf.nn.conv2d_transpose` operation is used." ] -
akiross created this gist
Nov 22, 2016 .There are no files selected for viewing