├── .gitignore ├── CONFIG ├── LICENSE ├── README.md ├── data.py ├── examples └── .gitignore ├── images ├── architecture.png ├── results_birds.png └── results_flowers.png ├── model.py ├── scripts ├── test_birds.sh ├── test_flowers.sh ├── train_birds.sh ├── train_flowers.sh ├── train_text_embedding_birds.sh └── train_text_embedding_flowers.sh ├── test.py ├── test ├── birds │ ├── Black_Billed_Cuckoo_0055_26223.jpg │ ├── Black_Footed_Albatross_0060_796076.jpg │ ├── Brewer_Blackbird_0112_2340.jpg │ ├── Horned_Grebe_0088_35023.jpg │ ├── Northern_Flicker_0100_28898.jpg │ ├── Red_Legged_Kittiwake_0060_795414.jpg │ └── Tree_Swallow_0107_136223.jpg ├── flowers │ ├── image_03828.jpg │ ├── image_03996.jpg │ ├── image_04899.jpg │ ├── image_05151.jpg │ ├── image_06615.jpg │ ├── image_06734.jpg │ └── image_07200.jpg ├── result_birds │ └── .gitignore ├── result_flowers │ └── .gitignore ├── text_birds.txt └── text_flowers.txt ├── train.py └── train_text_embedding.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .DS_Store -------------------------------------------------------------------------------- /CONFIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/CONFIG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/README.md -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/data.py -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/images/architecture.png -------------------------------------------------------------------------------- /images/results_birds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/images/results_birds.png -------------------------------------------------------------------------------- /images/results_flowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/images/results_flowers.png -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/model.py -------------------------------------------------------------------------------- /scripts/test_birds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/scripts/test_birds.sh -------------------------------------------------------------------------------- /scripts/test_flowers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/scripts/test_flowers.sh -------------------------------------------------------------------------------- /scripts/train_birds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/scripts/train_birds.sh -------------------------------------------------------------------------------- /scripts/train_flowers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/scripts/train_flowers.sh -------------------------------------------------------------------------------- /scripts/train_text_embedding_birds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/scripts/train_text_embedding_birds.sh -------------------------------------------------------------------------------- /scripts/train_text_embedding_flowers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/scripts/train_text_embedding_flowers.sh -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/test.py -------------------------------------------------------------------------------- /test/birds/Black_Billed_Cuckoo_0055_26223.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/test/birds/Black_Billed_Cuckoo_0055_26223.jpg -------------------------------------------------------------------------------- /test/birds/Black_Footed_Albatross_0060_796076.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/test/birds/Black_Footed_Albatross_0060_796076.jpg -------------------------------------------------------------------------------- /test/birds/Brewer_Blackbird_0112_2340.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/test/birds/Brewer_Blackbird_0112_2340.jpg -------------------------------------------------------------------------------- /test/birds/Horned_Grebe_0088_35023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/test/birds/Horned_Grebe_0088_35023.jpg -------------------------------------------------------------------------------- /test/birds/Northern_Flicker_0100_28898.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/test/birds/Northern_Flicker_0100_28898.jpg -------------------------------------------------------------------------------- /test/birds/Red_Legged_Kittiwake_0060_795414.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/test/birds/Red_Legged_Kittiwake_0060_795414.jpg -------------------------------------------------------------------------------- /test/birds/Tree_Swallow_0107_136223.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/test/birds/Tree_Swallow_0107_136223.jpg -------------------------------------------------------------------------------- /test/flowers/image_03828.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/test/flowers/image_03828.jpg -------------------------------------------------------------------------------- /test/flowers/image_03996.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/test/flowers/image_03996.jpg -------------------------------------------------------------------------------- /test/flowers/image_04899.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/test/flowers/image_04899.jpg -------------------------------------------------------------------------------- /test/flowers/image_05151.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/test/flowers/image_05151.jpg -------------------------------------------------------------------------------- /test/flowers/image_06615.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/test/flowers/image_06615.jpg -------------------------------------------------------------------------------- /test/flowers/image_06734.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/test/flowers/image_06734.jpg -------------------------------------------------------------------------------- /test/flowers/image_07200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/test/flowers/image_07200.jpg -------------------------------------------------------------------------------- /test/result_birds/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /test/result_flowers/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /test/text_birds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/test/text_birds.txt -------------------------------------------------------------------------------- /test/text_flowers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/test/text_flowers.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/train.py -------------------------------------------------------------------------------- /train_text_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woozzu/dong_iccv_2017/HEAD/train_text_embedding.py --------------------------------------------------------------------------------