├── .gitignore ├── README.md ├── behavior └── behavior.xar ├── deep_nao.pml ├── dialog └── dialog-en.top ├── doc ├── application_manager_add_current.png ├── disabled.png ├── nao.jpg ├── shell.png ├── upload_model.png └── use_custom_model.png ├── html ├── img │ ├── .empty │ └── deep.jpg ├── index.html ├── index.js ├── robotutils.js ├── style.css ├── upload.html └── upload.js ├── install.sh ├── lib └── python2.7 │ └── site-packages │ └── cv2.so ├── manifest.xml ├── models ├── ssd_mobilenet_v2_oid_v4 │ ├── frozen_inference_graph.pb │ ├── graph.pbtxt │ ├── objects.names.en │ └── objects.names.fr └── yolo_v4_tiny_custom │ └── .empty ├── notebook └── NAO_Deep_Learning_Custom_Model_Training.ipynb └── scripts ├── deep_nao.py ├── explorer.py ├── models.py ├── stk ├── __init__.py ├── events.py ├── logging.py ├── runner.py ├── services.py └── worker.py ├── stop_behavior.py └── translations.py /.gitignore: -------------------------------------------------------------------------------- 1 | *pyc 2 | *pkg 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/README.md -------------------------------------------------------------------------------- /behavior/behavior.xar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/behavior/behavior.xar -------------------------------------------------------------------------------- /deep_nao.pml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/deep_nao.pml -------------------------------------------------------------------------------- /dialog/dialog-en.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/dialog/dialog-en.top -------------------------------------------------------------------------------- /doc/application_manager_add_current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/doc/application_manager_add_current.png -------------------------------------------------------------------------------- /doc/disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/doc/disabled.png -------------------------------------------------------------------------------- /doc/nao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/doc/nao.jpg -------------------------------------------------------------------------------- /doc/shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/doc/shell.png -------------------------------------------------------------------------------- /doc/upload_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/doc/upload_model.png -------------------------------------------------------------------------------- /doc/use_custom_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/doc/use_custom_model.png -------------------------------------------------------------------------------- /html/img/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /html/img/deep.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/html/img/deep.jpg -------------------------------------------------------------------------------- /html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/html/index.html -------------------------------------------------------------------------------- /html/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/html/index.js -------------------------------------------------------------------------------- /html/robotutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/html/robotutils.js -------------------------------------------------------------------------------- /html/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/html/style.css -------------------------------------------------------------------------------- /html/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/html/upload.html -------------------------------------------------------------------------------- /html/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/html/upload.js -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/install.sh -------------------------------------------------------------------------------- /lib/python2.7/site-packages/cv2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/lib/python2.7/site-packages/cv2.so -------------------------------------------------------------------------------- /manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/manifest.xml -------------------------------------------------------------------------------- /models/ssd_mobilenet_v2_oid_v4/frozen_inference_graph.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/models/ssd_mobilenet_v2_oid_v4/frozen_inference_graph.pb -------------------------------------------------------------------------------- /models/ssd_mobilenet_v2_oid_v4/graph.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/models/ssd_mobilenet_v2_oid_v4/graph.pbtxt -------------------------------------------------------------------------------- /models/ssd_mobilenet_v2_oid_v4/objects.names.en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/models/ssd_mobilenet_v2_oid_v4/objects.names.en -------------------------------------------------------------------------------- /models/ssd_mobilenet_v2_oid_v4/objects.names.fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/models/ssd_mobilenet_v2_oid_v4/objects.names.fr -------------------------------------------------------------------------------- /models/yolo_v4_tiny_custom/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebook/NAO_Deep_Learning_Custom_Model_Training.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/notebook/NAO_Deep_Learning_Custom_Model_Training.ipynb -------------------------------------------------------------------------------- /scripts/deep_nao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/scripts/deep_nao.py -------------------------------------------------------------------------------- /scripts/explorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/scripts/explorer.py -------------------------------------------------------------------------------- /scripts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/scripts/models.py -------------------------------------------------------------------------------- /scripts/stk/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | STK - A collection of libraries useful for making apps with NAOqi. 3 | """ 4 | -------------------------------------------------------------------------------- /scripts/stk/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/scripts/stk/events.py -------------------------------------------------------------------------------- /scripts/stk/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/scripts/stk/logging.py -------------------------------------------------------------------------------- /scripts/stk/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/scripts/stk/runner.py -------------------------------------------------------------------------------- /scripts/stk/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/scripts/stk/services.py -------------------------------------------------------------------------------- /scripts/stk/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/scripts/stk/worker.py -------------------------------------------------------------------------------- /scripts/stop_behavior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/scripts/stop_behavior.py -------------------------------------------------------------------------------- /scripts/translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softbankrobotics-labs/nao-deep-learning/HEAD/scripts/translations.py --------------------------------------------------------------------------------