-
Notifications
You must be signed in to change notification settings - Fork 302
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Difference from tf.depth_to_space #32
Comments
@midddle I'm planning on using depth_to_space in keras. Which is the same. check this out https://github.com/twairball/keras-subpixel-conv |
According to my experiment, the phase shift implementation is different from tf.depth_to_space, Following is my Experiment, I'm using Tensorflow 1.6.0: ExperimentCode
Inputa: [[[[0 1 2 3 4 5 6 7 8]]]] Outputresult: For the implementation of phase shift, I use the code in #47. So probably I make some mistakes or they are just not same? |
@chaos5958 My problem is, the phase shift implementation produce different output from tf.depth_to_space one when provided the same input. |
Hey @chaos5958 , even I am trying to use tf.depth_to_space in TFlite. Did you find any solution or alternative? |
@purva98 No, instead, I'm using Qualcomm SNPE which supports tranpsose conv layer. |
Hi,
Was amazed by this great idea compared to conv2_transpose. Looking at tensorflow documentation I found tf.depth_to_space, which seems to do something similar (at least the non-color version), am I mistaken? What's the difference? What's the reason you did not use this op?
The text was updated successfully, but these errors were encountered: