Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does a TensorFlow deconvolution op exist?

I need to use a deconvolution layer for image generation from a NN. Does a TensorFlow implementation exist?

like image 966
goluhaque Avatar asked Apr 20 '26 09:04

goluhaque


1 Answers

There's deconvolution in a sense of Matt Zeiler's "Deconvolutional Networks" paper called conv2d_transpose

Found it by searching tensorflow github for "deconvolution"

like image 123
Yaroslav Bulatov Avatar answered Apr 23 '26 01:04

Yaroslav Bulatov