├── Foodimg2Ing ├── Templates │ ├── about.html │ ├── header.html │ ├── home.html │ ├── layout.html │ └── predict.html ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── args.cpython-38.pyc │ ├── model.cpython-38.pyc │ ├── output.cpython-38.pyc │ └── routes.cpython-38.pyc ├── args.py ├── data │ ├── ingr_vocab.pkl │ ├── instr_vocab.pkl │ └── modelbest.ckpt ├── model.py ├── modules │ ├── __pycache__ │ │ ├── encoder.cpython-38.pyc │ │ ├── multihead_attention.cpython-38.pyc │ │ ├── transformer_decoder.cpython-38.pyc │ │ └── utils.cpython-38.pyc │ ├── encoder.py │ ├── multihead_attention.py │ ├── transformer_decoder.py │ └── utils.py ├── output.py ├── routes.py ├── static │ ├── css │ │ └── style.css │ ├── demo_imgs │ │ └── Info.txt │ ├── images │ │ ├── burger.jpg │ │ ├── chocolate-cake.jpg │ │ ├── cover.jpg │ │ ├── favicon.ico │ │ └── grilled-beef.jpg │ └── main.js └── utils │ ├── __pycache__ │ ├── metrics.cpython-38.pyc │ └── output_utils.cpython-38.pyc │ ├── ims2file.py │ ├── metrics.py │ ├── output_utils.py │ └── tb_visualizer.py ├── Procfile ├── README.md ├── gitattributes ├── requirements.txt ├── run.py └── startup.py /Foodimg2Ing/Templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/Templates/about.html -------------------------------------------------------------------------------- /Foodimg2Ing/Templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/Templates/header.html -------------------------------------------------------------------------------- /Foodimg2Ing/Templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/Templates/home.html -------------------------------------------------------------------------------- /Foodimg2Ing/Templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/Templates/layout.html -------------------------------------------------------------------------------- /Foodimg2Ing/Templates/predict.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/Templates/predict.html -------------------------------------------------------------------------------- /Foodimg2Ing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/__init__.py -------------------------------------------------------------------------------- /Foodimg2Ing/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Foodimg2Ing/__pycache__/args.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/__pycache__/args.cpython-38.pyc -------------------------------------------------------------------------------- /Foodimg2Ing/__pycache__/model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/__pycache__/model.cpython-38.pyc -------------------------------------------------------------------------------- /Foodimg2Ing/__pycache__/output.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/__pycache__/output.cpython-38.pyc -------------------------------------------------------------------------------- /Foodimg2Ing/__pycache__/routes.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/__pycache__/routes.cpython-38.pyc -------------------------------------------------------------------------------- /Foodimg2Ing/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/args.py -------------------------------------------------------------------------------- /Foodimg2Ing/data/ingr_vocab.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/data/ingr_vocab.pkl -------------------------------------------------------------------------------- /Foodimg2Ing/data/instr_vocab.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/data/instr_vocab.pkl -------------------------------------------------------------------------------- /Foodimg2Ing/data/modelbest.ckpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/data/modelbest.ckpt -------------------------------------------------------------------------------- /Foodimg2Ing/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/model.py -------------------------------------------------------------------------------- /Foodimg2Ing/modules/__pycache__/encoder.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/modules/__pycache__/encoder.cpython-38.pyc -------------------------------------------------------------------------------- /Foodimg2Ing/modules/__pycache__/multihead_attention.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/modules/__pycache__/multihead_attention.cpython-38.pyc -------------------------------------------------------------------------------- /Foodimg2Ing/modules/__pycache__/transformer_decoder.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/modules/__pycache__/transformer_decoder.cpython-38.pyc -------------------------------------------------------------------------------- /Foodimg2Ing/modules/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/modules/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /Foodimg2Ing/modules/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/modules/encoder.py -------------------------------------------------------------------------------- /Foodimg2Ing/modules/multihead_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/modules/multihead_attention.py -------------------------------------------------------------------------------- /Foodimg2Ing/modules/transformer_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/modules/transformer_decoder.py -------------------------------------------------------------------------------- /Foodimg2Ing/modules/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/modules/utils.py -------------------------------------------------------------------------------- /Foodimg2Ing/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/output.py -------------------------------------------------------------------------------- /Foodimg2Ing/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/routes.py -------------------------------------------------------------------------------- /Foodimg2Ing/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/static/css/style.css -------------------------------------------------------------------------------- /Foodimg2Ing/static/demo_imgs/Info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/static/demo_imgs/Info.txt -------------------------------------------------------------------------------- /Foodimg2Ing/static/images/burger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/static/images/burger.jpg -------------------------------------------------------------------------------- /Foodimg2Ing/static/images/chocolate-cake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/static/images/chocolate-cake.jpg -------------------------------------------------------------------------------- /Foodimg2Ing/static/images/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/static/images/cover.jpg -------------------------------------------------------------------------------- /Foodimg2Ing/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/static/images/favicon.ico -------------------------------------------------------------------------------- /Foodimg2Ing/static/images/grilled-beef.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/static/images/grilled-beef.jpg -------------------------------------------------------------------------------- /Foodimg2Ing/static/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/static/main.js -------------------------------------------------------------------------------- /Foodimg2Ing/utils/__pycache__/metrics.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/utils/__pycache__/metrics.cpython-38.pyc -------------------------------------------------------------------------------- /Foodimg2Ing/utils/__pycache__/output_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/utils/__pycache__/output_utils.cpython-38.pyc -------------------------------------------------------------------------------- /Foodimg2Ing/utils/ims2file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/utils/ims2file.py -------------------------------------------------------------------------------- /Foodimg2Ing/utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/utils/metrics.py -------------------------------------------------------------------------------- /Foodimg2Ing/utils/output_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/utils/output_utils.py -------------------------------------------------------------------------------- /Foodimg2Ing/utils/tb_visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/Foodimg2Ing/utils/tb_visualizer.py -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn run:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/README.md -------------------------------------------------------------------------------- /gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/gitattributes -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navassherif98/Recipe-Generation-from-Food-Image/HEAD/run.py -------------------------------------------------------------------------------- /startup.py: -------------------------------------------------------------------------------- 1 | from Foodimg2Ing import app --------------------------------------------------------------------------------