├── .gitignore ├── LICENSE ├── README.md ├── config.py ├── data ├── cat.jpg └── lenna.jpg ├── data_loader.py ├── main.py ├── model.py ├── models ├── ram_6_8x8_2_ckpt.pth.tar ├── ram_6_8x8_2_model_best.pth.tar └── ram_6_8x8_2_params.json ├── modules.py ├── plot_glimpses.py ├── plots ├── bbox.png ├── example.gif ├── glimpses.png ├── model.png └── results.png ├── tests ├── test_model.py ├── test_modules.py └── test_retina.py ├── trainer.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzakka/recurrent-visual-attention/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzakka/recurrent-visual-attention/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzakka/recurrent-visual-attention/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzakka/recurrent-visual-attention/HEAD/config.py -------------------------------------------------------------------------------- /data/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzakka/recurrent-visual-attention/HEAD/data/cat.jpg -------------------------------------------------------------------------------- /data/lenna.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzakka/recurrent-visual-attention/HEAD/data/lenna.jpg -------------------------------------------------------------------------------- /data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzakka/recurrent-visual-attention/HEAD/data_loader.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzakka/recurrent-visual-attention/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzakka/recurrent-visual-attention/HEAD/model.py -------------------------------------------------------------------------------- /models/ram_6_8x8_2_ckpt.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzakka/recurrent-visual-attention/HEAD/models/ram_6_8x8_2_ckpt.pth.tar -------------------------------------------------------------------------------- /models/ram_6_8x8_2_model_best.pth.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzakka/recurrent-visual-attention/HEAD/models/ram_6_8x8_2_model_best.pth.tar -------------------------------------------------------------------------------- /models/ram_6_8x8_2_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzakka/recurrent-visual-attention/HEAD/models/ram_6_8x8_2_params.json -------------------------------------------------------------------------------- /modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzakka/recurrent-visual-attention/HEAD/modules.py -------------------------------------------------------------------------------- /plot_glimpses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzakka/recurrent-visual-attention/HEAD/plot_glimpses.py -------------------------------------------------------------------------------- /plots/bbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzakka/recurrent-visual-attention/HEAD/plots/bbox.png -------------------------------------------------------------------------------- /plots/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzakka/recurrent-visual-attention/HEAD/plots/example.gif -------------------------------------------------------------------------------- /plots/glimpses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzakka/recurrent-visual-attention/HEAD/plots/glimpses.png -------------------------------------------------------------------------------- /plots/model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzakka/recurrent-visual-attention/HEAD/plots/model.png -------------------------------------------------------------------------------- /plots/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzakka/recurrent-visual-attention/HEAD/plots/results.png -------------------------------------------------------------------------------- /tests/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzakka/recurrent-visual-attention/HEAD/tests/test_model.py -------------------------------------------------------------------------------- /tests/test_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzakka/recurrent-visual-attention/HEAD/tests/test_modules.py -------------------------------------------------------------------------------- /tests/test_retina.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzakka/recurrent-visual-attention/HEAD/tests/test_retina.py -------------------------------------------------------------------------------- /trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzakka/recurrent-visual-attention/HEAD/trainer.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinzakka/recurrent-visual-attention/HEAD/utils.py --------------------------------------------------------------------------------