Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

would it be straight forward to implement a spatial transformer network in tensorflow?

Tags:

tensorflow

i am interested in trying things out with a spatial transformer network and I can't find any implementation of it in caffe or tensorflow, which are the only two libraries I'm interested in using. I have a pretty good grasp of tensorflow but was wondering if it would be straight forward to implement with the existing building blocks that tensorflow offers without having to do something too complicated like write a custom c++ module

like image 757
Nadav Ben-Haim Avatar asked Mar 13 '23 02:03

Nadav Ben-Haim


2 Answers

Yes, it is very straight forward to setup the Tensorflow graph for a spatial transformer network with the existing API.

You can find an example implementation in Tensorflow here [1].

[1] https://github.com/daviddao/spatial-transformer-tensorflow

like image 62
David Dao Avatar answered Apr 28 '23 07:04

David Dao


There is an implementation in caffe here. https://github.com/daerduoCarey/SpatialTransformerLayer

like image 40
mining Avatar answered Apr 28 '23 07:04

mining