Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/zehaos/tfstn

Pure Tensorflow Implementation of Spatial Transformer Networks. TF API 1.0. Good visualization. Easy to be intergrated.
https://github.com/zehaos/tfstn

Last synced: 3 months ago
JSON representation

Pure Tensorflow Implementation of Spatial Transformer Networks. TF API 1.0. Good visualization. Easy to be intergrated.

Awesome Lists containing this project

README

        

# TFSTN
This is a pure tensorflow implementation of Spatial Transformer Networks.





## Features:
- TF API 1.0.0
- Good visualization.
- Easy to be intergrated.
- Tfrecord input pipeline

## Graph





## Result





## Usage

### Make mnist tfrecord
[script](https://github.com/Zehaos/learn-tensorflow/blob/master/make_tfrecord.py)

### Train
```
python train.py
```

### Visualize
```
tensorboard --logdir=/tmp/zehao/logs/STN/train
```

## TODO
- [x] Train
- [x] Visualization
- [x] Transform input images
- [x] Different learning between stn&cnn
- [x] Tfrecord pipeline
- [ ] Intergrate into face recognition task

## Reference
[Spatial Transformer Networks](https://arxiv.org/pdf/1506.02025.pdf)

[IC-STN](https://github.com/ericlin79119/IC-STN)