├── Business_value_marketing ├── .ipynb_checkpoints │ └── marketing_data-checkpoint.ipynb ├── camera_1.csv ├── marketing_data.ipynb ├── time_average_age_correlation.png ├── time_count_correlation.png └── time_count_gender_correlation.png ├── JunctionAPI ├── TinyFaces │ ├── README.md │ ├── __init__.py │ ├── tiny_face_det.py │ ├── tiny_face_eval.py │ ├── tiny_face_model.py │ ├── tinyface_tf │ │ ├── selfie.jpg │ │ └── selfie_detection.jpg │ ├── uploaded_imgs │ │ ├── img1.jpg │ │ └── img1_detection.jpg │ └── util.py ├── __init__.py ├── api.py ├── app │ ├── __init__.py │ ├── detect │ │ ├── __init__.py │ │ ├── face_detector.py │ │ ├── forms.py │ │ ├── routes.py │ │ ├── routes_opencv.py │ │ └── run_model_server.py │ ├── main │ │ ├── __init__.py │ │ ├── forms.py │ │ └── routes.py │ └── templates │ │ ├── base.html │ │ └── detect │ │ ├── results.html │ │ └── upload.html ├── config.py └── flask_requirements.txt ├── LICENSE ├── README.md ├── api ├── __pycache__ │ ├── api.cpython-35.pyc │ ├── api.cpython-36.pyc │ ├── config.cpython-35.pyc │ └── config.cpython-36.pyc ├── api.py ├── app │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-35.pyc │ │ └── __init__.cpython-36.pyc │ ├── detect │ │ ├── README.md │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-35.pyc │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── camera.cpython-35.pyc │ │ │ ├── customerservices.cpython-35.pyc │ │ │ ├── forms.cpython-35.pyc │ │ │ ├── forms.cpython-36.pyc │ │ │ ├── geo_info_caller.cpython-35.pyc │ │ │ ├── routes.cpython-35.pyc │ │ │ ├── routes.cpython-36.pyc │ │ │ ├── run_model_server.cpython-35.pyc │ │ │ └── run_model_server.cpython-36.pyc │ │ ├── camera.py │ │ ├── camera.pyc │ │ ├── customerservices.py │ │ ├── customerservices.pyc │ │ ├── face_detector.py │ │ ├── facedata.csv │ │ ├── facedata.ods │ │ ├── facedata.xls │ │ ├── forms.py │ │ ├── geo_info_caller.py │ │ ├── morerealdata.csv │ │ ├── outputgenerator.py │ │ ├── routes.py │ │ ├── run_model_server.py │ │ ├── savedheatmap │ │ │ └── heatmap.png │ │ ├── staduim1.png │ │ ├── test_customerService.py │ │ └── tweetGenerator.py │ ├── main │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-35.pyc │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── routes.cpython-35.pyc │ │ │ └── routes.cpython-36.pyc │ │ ├── forms.py │ │ └── routes.py │ ├── model │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-35.pyc │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── age_model.cpython-35.pyc │ │ │ ├── age_model.cpython-36.pyc │ │ │ ├── emo_model.cpython-35.pyc │ │ │ ├── emo_model.cpython-36.pyc │ │ │ ├── smallervggnet.cpython-35.pyc │ │ │ └── smallervggnet.cpython-36.pyc │ │ ├── age_model.py │ │ ├── emo_model.py │ │ └── smallervggnet.py │ ├── records │ │ └── camera1.csv │ ├── static │ │ ├── age_status.png │ │ ├── emotion_status.png │ │ ├── gender_status.png │ │ ├── heatmap.png │ │ ├── selfytest_detect.jpeg │ │ ├── test2_detect.jpeg │ │ └── test_detect.jpg │ └── templates │ │ ├── base.html │ │ └── detect │ │ ├── index.html │ │ ├── public.html │ │ ├── results.html │ │ └── upload.html ├── config.py └── requirements.txt ├── face_detection_statistics.png ├── junction.jpg ├── out_putgeneration ├── README.md ├── camera.py ├── camera.pyc ├── customerservices.py ├── customerservices.pyc ├── facedata.csv ├── facedata.ods ├── facedata.xls ├── geo_info_caller.py ├── geo_info_caller.pyc ├── morerealdata.csv ├── outputgenerator.py ├── savedheatmap │ └── heatmap.png ├── staduim1.png ├── test_customerService.py └── tweetGenerator.py └── web_and_mobile.png /Business_value_marketing/.ipynb_checkpoints/marketing_data-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/Business_value_marketing/.ipynb_checkpoints/marketing_data-checkpoint.ipynb -------------------------------------------------------------------------------- /Business_value_marketing/camera_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/Business_value_marketing/camera_1.csv -------------------------------------------------------------------------------- /Business_value_marketing/marketing_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/Business_value_marketing/marketing_data.ipynb -------------------------------------------------------------------------------- /Business_value_marketing/time_average_age_correlation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/Business_value_marketing/time_average_age_correlation.png -------------------------------------------------------------------------------- /Business_value_marketing/time_count_correlation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/Business_value_marketing/time_count_correlation.png -------------------------------------------------------------------------------- /Business_value_marketing/time_count_gender_correlation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/Business_value_marketing/time_count_gender_correlation.png -------------------------------------------------------------------------------- /JunctionAPI/TinyFaces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/JunctionAPI/TinyFaces/README.md -------------------------------------------------------------------------------- /JunctionAPI/TinyFaces/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JunctionAPI/TinyFaces/tiny_face_det.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/JunctionAPI/TinyFaces/tiny_face_det.py -------------------------------------------------------------------------------- /JunctionAPI/TinyFaces/tiny_face_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/JunctionAPI/TinyFaces/tiny_face_eval.py -------------------------------------------------------------------------------- /JunctionAPI/TinyFaces/tiny_face_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/JunctionAPI/TinyFaces/tiny_face_model.py -------------------------------------------------------------------------------- /JunctionAPI/TinyFaces/tinyface_tf/selfie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/JunctionAPI/TinyFaces/tinyface_tf/selfie.jpg -------------------------------------------------------------------------------- /JunctionAPI/TinyFaces/tinyface_tf/selfie_detection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/JunctionAPI/TinyFaces/tinyface_tf/selfie_detection.jpg -------------------------------------------------------------------------------- /JunctionAPI/TinyFaces/uploaded_imgs/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/JunctionAPI/TinyFaces/uploaded_imgs/img1.jpg -------------------------------------------------------------------------------- /JunctionAPI/TinyFaces/uploaded_imgs/img1_detection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/JunctionAPI/TinyFaces/uploaded_imgs/img1_detection.jpg -------------------------------------------------------------------------------- /JunctionAPI/TinyFaces/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/JunctionAPI/TinyFaces/util.py -------------------------------------------------------------------------------- /JunctionAPI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JunctionAPI/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/JunctionAPI/api.py -------------------------------------------------------------------------------- /JunctionAPI/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JunctionAPI/app/detect/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/JunctionAPI/app/detect/__init__.py -------------------------------------------------------------------------------- /JunctionAPI/app/detect/face_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/JunctionAPI/app/detect/face_detector.py -------------------------------------------------------------------------------- /JunctionAPI/app/detect/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/JunctionAPI/app/detect/forms.py -------------------------------------------------------------------------------- /JunctionAPI/app/detect/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/JunctionAPI/app/detect/routes.py -------------------------------------------------------------------------------- /JunctionAPI/app/detect/routes_opencv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/JunctionAPI/app/detect/routes_opencv.py -------------------------------------------------------------------------------- /JunctionAPI/app/detect/run_model_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/JunctionAPI/app/detect/run_model_server.py -------------------------------------------------------------------------------- /JunctionAPI/app/main/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/JunctionAPI/app/main/__init__.py -------------------------------------------------------------------------------- /JunctionAPI/app/main/forms.py: -------------------------------------------------------------------------------- 1 | from flask import request 2 | -------------------------------------------------------------------------------- /JunctionAPI/app/main/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/JunctionAPI/app/main/routes.py -------------------------------------------------------------------------------- /JunctionAPI/app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/JunctionAPI/app/templates/base.html -------------------------------------------------------------------------------- /JunctionAPI/app/templates/detect/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/JunctionAPI/app/templates/detect/results.html -------------------------------------------------------------------------------- /JunctionAPI/app/templates/detect/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/JunctionAPI/app/templates/detect/upload.html -------------------------------------------------------------------------------- /JunctionAPI/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/JunctionAPI/config.py -------------------------------------------------------------------------------- /JunctionAPI/flask_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/JunctionAPI/flask_requirements.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/README.md -------------------------------------------------------------------------------- /api/__pycache__/api.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/__pycache__/api.cpython-35.pyc -------------------------------------------------------------------------------- /api/__pycache__/api.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/__pycache__/api.cpython-36.pyc -------------------------------------------------------------------------------- /api/__pycache__/config.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/__pycache__/config.cpython-35.pyc -------------------------------------------------------------------------------- /api/__pycache__/config.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/__pycache__/config.cpython-36.pyc -------------------------------------------------------------------------------- /api/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/api.py -------------------------------------------------------------------------------- /api/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/__init__.py -------------------------------------------------------------------------------- /api/app/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /api/app/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /api/app/detect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/detect/README.md -------------------------------------------------------------------------------- /api/app/detect/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/detect/__init__.py -------------------------------------------------------------------------------- /api/app/detect/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/detect/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /api/app/detect/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/detect/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /api/app/detect/__pycache__/camera.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/detect/__pycache__/camera.cpython-35.pyc -------------------------------------------------------------------------------- /api/app/detect/__pycache__/customerservices.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/detect/__pycache__/customerservices.cpython-35.pyc -------------------------------------------------------------------------------- /api/app/detect/__pycache__/forms.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/detect/__pycache__/forms.cpython-35.pyc -------------------------------------------------------------------------------- /api/app/detect/__pycache__/forms.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/detect/__pycache__/forms.cpython-36.pyc -------------------------------------------------------------------------------- /api/app/detect/__pycache__/geo_info_caller.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/detect/__pycache__/geo_info_caller.cpython-35.pyc -------------------------------------------------------------------------------- /api/app/detect/__pycache__/routes.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/detect/__pycache__/routes.cpython-35.pyc -------------------------------------------------------------------------------- /api/app/detect/__pycache__/routes.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/detect/__pycache__/routes.cpython-36.pyc -------------------------------------------------------------------------------- /api/app/detect/__pycache__/run_model_server.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/detect/__pycache__/run_model_server.cpython-35.pyc -------------------------------------------------------------------------------- /api/app/detect/__pycache__/run_model_server.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/detect/__pycache__/run_model_server.cpython-36.pyc -------------------------------------------------------------------------------- /api/app/detect/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/detect/camera.py -------------------------------------------------------------------------------- /api/app/detect/camera.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/detect/camera.pyc -------------------------------------------------------------------------------- /api/app/detect/customerservices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/detect/customerservices.py -------------------------------------------------------------------------------- /api/app/detect/customerservices.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/detect/customerservices.pyc -------------------------------------------------------------------------------- /api/app/detect/face_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/detect/face_detector.py -------------------------------------------------------------------------------- /api/app/detect/facedata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/detect/facedata.csv -------------------------------------------------------------------------------- /api/app/detect/facedata.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/detect/facedata.ods -------------------------------------------------------------------------------- /api/app/detect/facedata.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/detect/facedata.xls -------------------------------------------------------------------------------- /api/app/detect/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/detect/forms.py -------------------------------------------------------------------------------- /api/app/detect/geo_info_caller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/detect/geo_info_caller.py -------------------------------------------------------------------------------- /api/app/detect/morerealdata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/detect/morerealdata.csv -------------------------------------------------------------------------------- /api/app/detect/outputgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/detect/outputgenerator.py -------------------------------------------------------------------------------- /api/app/detect/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/detect/routes.py -------------------------------------------------------------------------------- /api/app/detect/run_model_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/detect/run_model_server.py -------------------------------------------------------------------------------- /api/app/detect/savedheatmap/heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/detect/savedheatmap/heatmap.png -------------------------------------------------------------------------------- /api/app/detect/staduim1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/detect/staduim1.png -------------------------------------------------------------------------------- /api/app/detect/test_customerService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/detect/test_customerService.py -------------------------------------------------------------------------------- /api/app/detect/tweetGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/detect/tweetGenerator.py -------------------------------------------------------------------------------- /api/app/main/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/main/__init__.py -------------------------------------------------------------------------------- /api/app/main/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/main/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /api/app/main/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/main/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /api/app/main/__pycache__/routes.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/main/__pycache__/routes.cpython-35.pyc -------------------------------------------------------------------------------- /api/app/main/__pycache__/routes.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/main/__pycache__/routes.cpython-36.pyc -------------------------------------------------------------------------------- /api/app/main/forms.py: -------------------------------------------------------------------------------- 1 | from flask import request 2 | -------------------------------------------------------------------------------- /api/app/main/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/main/routes.py -------------------------------------------------------------------------------- /api/app/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/model/__init__.py -------------------------------------------------------------------------------- /api/app/model/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/model/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /api/app/model/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/model/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /api/app/model/__pycache__/age_model.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/model/__pycache__/age_model.cpython-35.pyc -------------------------------------------------------------------------------- /api/app/model/__pycache__/age_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/model/__pycache__/age_model.cpython-36.pyc -------------------------------------------------------------------------------- /api/app/model/__pycache__/emo_model.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/model/__pycache__/emo_model.cpython-35.pyc -------------------------------------------------------------------------------- /api/app/model/__pycache__/emo_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/model/__pycache__/emo_model.cpython-36.pyc -------------------------------------------------------------------------------- /api/app/model/__pycache__/smallervggnet.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/model/__pycache__/smallervggnet.cpython-35.pyc -------------------------------------------------------------------------------- /api/app/model/__pycache__/smallervggnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/model/__pycache__/smallervggnet.cpython-36.pyc -------------------------------------------------------------------------------- /api/app/model/age_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/model/age_model.py -------------------------------------------------------------------------------- /api/app/model/emo_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/model/emo_model.py -------------------------------------------------------------------------------- /api/app/model/smallervggnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/model/smallervggnet.py -------------------------------------------------------------------------------- /api/app/records/camera1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/records/camera1.csv -------------------------------------------------------------------------------- /api/app/static/age_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/static/age_status.png -------------------------------------------------------------------------------- /api/app/static/emotion_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/static/emotion_status.png -------------------------------------------------------------------------------- /api/app/static/gender_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/static/gender_status.png -------------------------------------------------------------------------------- /api/app/static/heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/static/heatmap.png -------------------------------------------------------------------------------- /api/app/static/selfytest_detect.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/static/selfytest_detect.jpeg -------------------------------------------------------------------------------- /api/app/static/test2_detect.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/static/test2_detect.jpeg -------------------------------------------------------------------------------- /api/app/static/test_detect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/static/test_detect.jpg -------------------------------------------------------------------------------- /api/app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/templates/base.html -------------------------------------------------------------------------------- /api/app/templates/detect/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/templates/detect/index.html -------------------------------------------------------------------------------- /api/app/templates/detect/public.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/templates/detect/public.html -------------------------------------------------------------------------------- /api/app/templates/detect/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/templates/detect/results.html -------------------------------------------------------------------------------- /api/app/templates/detect/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/app/templates/detect/upload.html -------------------------------------------------------------------------------- /api/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/config.py -------------------------------------------------------------------------------- /api/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/api/requirements.txt -------------------------------------------------------------------------------- /face_detection_statistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/face_detection_statistics.png -------------------------------------------------------------------------------- /junction.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/junction.jpg -------------------------------------------------------------------------------- /out_putgeneration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/out_putgeneration/README.md -------------------------------------------------------------------------------- /out_putgeneration/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/out_putgeneration/camera.py -------------------------------------------------------------------------------- /out_putgeneration/camera.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/out_putgeneration/camera.pyc -------------------------------------------------------------------------------- /out_putgeneration/customerservices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/out_putgeneration/customerservices.py -------------------------------------------------------------------------------- /out_putgeneration/customerservices.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/out_putgeneration/customerservices.pyc -------------------------------------------------------------------------------- /out_putgeneration/facedata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/out_putgeneration/facedata.csv -------------------------------------------------------------------------------- /out_putgeneration/facedata.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/out_putgeneration/facedata.ods -------------------------------------------------------------------------------- /out_putgeneration/facedata.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/out_putgeneration/facedata.xls -------------------------------------------------------------------------------- /out_putgeneration/geo_info_caller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/out_putgeneration/geo_info_caller.py -------------------------------------------------------------------------------- /out_putgeneration/geo_info_caller.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/out_putgeneration/geo_info_caller.pyc -------------------------------------------------------------------------------- /out_putgeneration/morerealdata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/out_putgeneration/morerealdata.csv -------------------------------------------------------------------------------- /out_putgeneration/outputgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/out_putgeneration/outputgenerator.py -------------------------------------------------------------------------------- /out_putgeneration/savedheatmap/heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/out_putgeneration/savedheatmap/heatmap.png -------------------------------------------------------------------------------- /out_putgeneration/staduim1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/out_putgeneration/staduim1.png -------------------------------------------------------------------------------- /out_putgeneration/test_customerService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/out_putgeneration/test_customerService.py -------------------------------------------------------------------------------- /out_putgeneration/tweetGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/out_putgeneration/tweetGenerator.py -------------------------------------------------------------------------------- /web_and_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Machine-Learning-Tokyo/MLTx2020/HEAD/web_and_mobile.png --------------------------------------------------------------------------------