├── README.md ├── Tinder_CNN_Implementation.ipynb ├── auth.json ├── bot.py ├── helpers.py ├── image_processing.py ├── img ├── baetamining_bot.gif ├── e2fd642e1c032786b6872bc6d7bc33c6.svg ├── formula.gif ├── sample_bot.png ├── scarlet_v2.png └── tinder.png ├── img_scrape.py ├── io_helper.py ├── messages.py ├── model_V3.h5 ├── prepare_data.ipynb ├── requirements.txt └── utils └── haarcascade_frontalface_alt.xml /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_for_Dating/HEAD/README.md -------------------------------------------------------------------------------- /Tinder_CNN_Implementation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_for_Dating/HEAD/Tinder_CNN_Implementation.ipynb -------------------------------------------------------------------------------- /auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_for_Dating/HEAD/auth.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_for_Dating/HEAD/bot.py -------------------------------------------------------------------------------- /helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_for_Dating/HEAD/helpers.py -------------------------------------------------------------------------------- /image_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_for_Dating/HEAD/image_processing.py -------------------------------------------------------------------------------- /img/baetamining_bot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_for_Dating/HEAD/img/baetamining_bot.gif -------------------------------------------------------------------------------- /img/e2fd642e1c032786b6872bc6d7bc33c6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_for_Dating/HEAD/img/e2fd642e1c032786b6872bc6d7bc33c6.svg -------------------------------------------------------------------------------- /img/formula.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_for_Dating/HEAD/img/formula.gif -------------------------------------------------------------------------------- /img/sample_bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_for_Dating/HEAD/img/sample_bot.png -------------------------------------------------------------------------------- /img/scarlet_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_for_Dating/HEAD/img/scarlet_v2.png -------------------------------------------------------------------------------- /img/tinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_for_Dating/HEAD/img/tinder.png -------------------------------------------------------------------------------- /img_scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_for_Dating/HEAD/img_scrape.py -------------------------------------------------------------------------------- /io_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_for_Dating/HEAD/io_helper.py -------------------------------------------------------------------------------- /messages.py: -------------------------------------------------------------------------------- 1 | messages = [ 2 | [u'INSERT YOUR OPENING LINE HERE'] 3 | ] 4 | -------------------------------------------------------------------------------- /model_V3.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_for_Dating/HEAD/model_V3.h5 -------------------------------------------------------------------------------- /prepare_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_for_Dating/HEAD/prepare_data.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_for_Dating/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/haarcascade_frontalface_alt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/AI_for_Dating/HEAD/utils/haarcascade_frontalface_alt.xml --------------------------------------------------------------------------------