-
Notifications
You must be signed in to change notification settings - Fork 301
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
Do you have any suggestion on implementing this in caffe #25
Comments
Have you implemented this model on caffe? |
I too am interested in using an implementation of this in Caffe. Are either of you working on one or aware of any useful/related resources? |
You can write this as a python layer in caffe using numpy. Check out Caffe's python layer support. Numpy and TF are almost interchangeable in terms of the functions used in the operator. Sadly, the backward pass must also be implemented but it is fairly easy. You just have to do the operations in reverse. I am starting to write it, will post a link if I finish it. |
I found a pytorch implementation here: https://github.com/pytorch/examples/tree/master/super_resolution |
@timothybrooks This is my attempt at porting. I have tested the layer in a standalone fashion and have attached a script as well so that you can also test with various inputs. If you are interested do check and let me know if there are any mistakes. |
Thanks! I will definitely try it out. |
is it based on ESPCN? |
No description provided.
The text was updated successfully, but these errors were encountered: