├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── args.py ├── data └── .gitignore ├── data_loader.py ├── image2embedding.py ├── requirements.txt ├── scripts ├── bigrams.py ├── get_vocab.py ├── mk_dataset.py ├── params.py ├── proc.py ├── rank.py ├── remove1M.txt ├── tokenize_instructions.py └── utils.py ├── test.py ├── train.py └── trijoint.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torralba-lab/im2recipe-Pytorch/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torralba-lab/im2recipe-Pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torralba-lab/im2recipe-Pytorch/HEAD/README.md -------------------------------------------------------------------------------- /args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torralba-lab/im2recipe-Pytorch/HEAD/args.py -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torralba-lab/im2recipe-Pytorch/HEAD/data/.gitignore -------------------------------------------------------------------------------- /data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torralba-lab/im2recipe-Pytorch/HEAD/data_loader.py -------------------------------------------------------------------------------- /image2embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torralba-lab/im2recipe-Pytorch/HEAD/image2embedding.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torralba-lab/im2recipe-Pytorch/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/bigrams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torralba-lab/im2recipe-Pytorch/HEAD/scripts/bigrams.py -------------------------------------------------------------------------------- /scripts/get_vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torralba-lab/im2recipe-Pytorch/HEAD/scripts/get_vocab.py -------------------------------------------------------------------------------- /scripts/mk_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torralba-lab/im2recipe-Pytorch/HEAD/scripts/mk_dataset.py -------------------------------------------------------------------------------- /scripts/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torralba-lab/im2recipe-Pytorch/HEAD/scripts/params.py -------------------------------------------------------------------------------- /scripts/proc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torralba-lab/im2recipe-Pytorch/HEAD/scripts/proc.py -------------------------------------------------------------------------------- /scripts/rank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torralba-lab/im2recipe-Pytorch/HEAD/scripts/rank.py -------------------------------------------------------------------------------- /scripts/remove1M.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torralba-lab/im2recipe-Pytorch/HEAD/scripts/remove1M.txt -------------------------------------------------------------------------------- /scripts/tokenize_instructions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torralba-lab/im2recipe-Pytorch/HEAD/scripts/tokenize_instructions.py -------------------------------------------------------------------------------- /scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torralba-lab/im2recipe-Pytorch/HEAD/scripts/utils.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torralba-lab/im2recipe-Pytorch/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torralba-lab/im2recipe-Pytorch/HEAD/train.py -------------------------------------------------------------------------------- /trijoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torralba-lab/im2recipe-Pytorch/HEAD/trijoint.py --------------------------------------------------------------------------------