├── .gitignore ├── README.md ├── cache_lime.py ├── complete_model.py ├── contour_utils.py ├── extract_features_and_dump.py ├── gpu0.sh ├── gpu1.sh ├── gpu2.sh ├── lime_results_dbase.db ├── nlp_stuff.py ├── requirements.txt ├── rnn_model.py ├── server.py ├── server_lime_contours.py ├── server_nolime.py ├── simplified_complete_model.py ├── static ├── 12345.jpg ├── 32561.jpg ├── 45321.jpg ├── jquery-1.12.4.js ├── jquery-ui.js ├── lime_queries.json ├── myscript.js ├── myscript_lime_contours.js ├── myscript_nolime.js └── overlays_cache │ ├── im1.jpg │ ├── im2.jpg │ └── im3.jpg ├── templates ├── index.html ├── index_lime_contours.html └── index_nolime.html ├── tensorboard_logging.py └── validation_script.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/README.md -------------------------------------------------------------------------------- /cache_lime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/cache_lime.py -------------------------------------------------------------------------------- /complete_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/complete_model.py -------------------------------------------------------------------------------- /contour_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/contour_utils.py -------------------------------------------------------------------------------- /extract_features_and_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/extract_features_and_dump.py -------------------------------------------------------------------------------- /gpu0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/gpu0.sh -------------------------------------------------------------------------------- /gpu1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/gpu1.sh -------------------------------------------------------------------------------- /gpu2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/gpu2.sh -------------------------------------------------------------------------------- /lime_results_dbase.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/lime_results_dbase.db -------------------------------------------------------------------------------- /nlp_stuff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/nlp_stuff.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/requirements.txt -------------------------------------------------------------------------------- /rnn_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/rnn_model.py -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/server.py -------------------------------------------------------------------------------- /server_lime_contours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/server_lime_contours.py -------------------------------------------------------------------------------- /server_nolime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/server_nolime.py -------------------------------------------------------------------------------- /simplified_complete_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/simplified_complete_model.py -------------------------------------------------------------------------------- /static/12345.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/static/12345.jpg -------------------------------------------------------------------------------- /static/32561.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/static/32561.jpg -------------------------------------------------------------------------------- /static/45321.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/static/45321.jpg -------------------------------------------------------------------------------- /static/jquery-1.12.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/static/jquery-1.12.4.js -------------------------------------------------------------------------------- /static/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/static/jquery-ui.js -------------------------------------------------------------------------------- /static/lime_queries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/static/lime_queries.json -------------------------------------------------------------------------------- /static/myscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/static/myscript.js -------------------------------------------------------------------------------- /static/myscript_lime_contours.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/static/myscript_lime_contours.js -------------------------------------------------------------------------------- /static/myscript_nolime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/static/myscript_nolime.js -------------------------------------------------------------------------------- /static/overlays_cache/im1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/static/overlays_cache/im1.jpg -------------------------------------------------------------------------------- /static/overlays_cache/im2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/static/overlays_cache/im2.jpg -------------------------------------------------------------------------------- /static/overlays_cache/im3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/static/overlays_cache/im3.jpg -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/index_lime_contours.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/templates/index_lime_contours.html -------------------------------------------------------------------------------- /templates/index_nolime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/templates/index_nolime.html -------------------------------------------------------------------------------- /tensorboard_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/tensorboard_logging.py -------------------------------------------------------------------------------- /validation_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/priyamtejaswin/devise-keras/HEAD/validation_script.py --------------------------------------------------------------------------------