├── .gitignore ├── 1-take-pictures └── take-pictures.py ├── 2-upload-pictures └── upload-pictures.py ├── 3-train ├── Dockerfile ├── execscript.sh ├── requirements.txt └── train.yml ├── 4-classify ├── Dockerfile ├── classifier.py ├── openwhisk-api │ ├── .gitignore │ ├── api.js │ ├── deploy.sh │ ├── package-lock.json │ └── package.json ├── requirements.txt └── tensorflow-model-classifier.yaml ├── 5-test-in-web-app ├── .cfignore ├── .env-template ├── .gitignore ├── app.js ├── config │ ├── bundle-utils.js │ ├── express.js │ └── security.js ├── manifest.yml ├── package.json ├── public │ ├── css │ │ ├── extra.css │ │ ├── footer.css │ │ ├── retraining.css │ │ ├── style.css │ │ └── training.css │ ├── fonts │ │ └── icon-fonts │ │ │ ├── README.md │ │ │ ├── icons.eot │ │ │ ├── icons.svg │ │ │ ├── icons.ttf │ │ │ └── icons.woff │ ├── images │ │ ├── VR zip icon.svg │ │ ├── down-arrow.png │ │ ├── favicon.ico │ │ ├── icons │ │ │ ├── alert.svg │ │ │ ├── down-arrow.svg │ │ │ ├── link.svg │ │ │ └── reset.svg │ │ ├── link_image.png │ │ ├── loading-indicator.gif │ │ ├── samples │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ └── 7.jpg │ │ ├── service-icon.svg │ │ ├── up-arrow.png │ │ ├── watson-logo-white.svg │ │ └── watson-logo.svg │ └── js │ │ ├── .eslintrc │ │ ├── analytics.js │ │ ├── bundle.js │ │ ├── classNameMapper.js │ │ ├── classresults.jsx │ │ ├── demo.js │ │ ├── errormsg.jsx │ │ ├── image-boxes.jsx │ │ ├── membership.js │ │ ├── retraining.jsx │ │ ├── state.js │ │ ├── train.js │ │ ├── use.js │ │ └── vendors │ │ └── tealeaf.js ├── server.js └── views │ ├── includes │ ├── footer.jade │ ├── header.jade │ ├── test.jade │ ├── train.jade │ └── use.jade │ ├── layout.jade │ ├── mixins │ ├── sampleImages.jade │ └── sampleInput.jade │ ├── testing.jade │ ├── thermometer.jade │ ├── train.jade │ └── use.jade ├── 6-play-with-cozmo └── find.py ├── CONTRIBUTING.md ├── LICENSE ├── MAINTAINERS.md ├── NOTICE ├── README.md ├── doc └── source │ └── images │ └── architecture.png └── pictures ├── cozmo-deer.jpg ├── cozmo-photos.zip ├── cozmo-toys.jpg ├── cozmo-training.jpg ├── cozmo.jpg ├── slideshare.png ├── training-data.png ├── video.png └── web-app.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/.gitignore -------------------------------------------------------------------------------- /1-take-pictures/take-pictures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/1-take-pictures/take-pictures.py -------------------------------------------------------------------------------- /2-upload-pictures/upload-pictures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/2-upload-pictures/upload-pictures.py -------------------------------------------------------------------------------- /3-train/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/3-train/Dockerfile -------------------------------------------------------------------------------- /3-train/execscript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/3-train/execscript.sh -------------------------------------------------------------------------------- /3-train/requirements.txt: -------------------------------------------------------------------------------- 1 | awscli==1.16.13 2 | -------------------------------------------------------------------------------- /3-train/train.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/3-train/train.yml -------------------------------------------------------------------------------- /4-classify/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/4-classify/Dockerfile -------------------------------------------------------------------------------- /4-classify/classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/4-classify/classifier.py -------------------------------------------------------------------------------- /4-classify/openwhisk-api/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /4-classify/openwhisk-api/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/4-classify/openwhisk-api/api.js -------------------------------------------------------------------------------- /4-classify/openwhisk-api/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/4-classify/openwhisk-api/deploy.sh -------------------------------------------------------------------------------- /4-classify/openwhisk-api/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/4-classify/openwhisk-api/package-lock.json -------------------------------------------------------------------------------- /4-classify/openwhisk-api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/4-classify/openwhisk-api/package.json -------------------------------------------------------------------------------- /4-classify/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/4-classify/requirements.txt -------------------------------------------------------------------------------- /4-classify/tensorflow-model-classifier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/4-classify/tensorflow-model-classifier.yaml -------------------------------------------------------------------------------- /5-test-in-web-app/.cfignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/.cfignore -------------------------------------------------------------------------------- /5-test-in-web-app/.env-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/.env-template -------------------------------------------------------------------------------- /5-test-in-web-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/.gitignore -------------------------------------------------------------------------------- /5-test-in-web-app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/app.js -------------------------------------------------------------------------------- /5-test-in-web-app/config/bundle-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/config/bundle-utils.js -------------------------------------------------------------------------------- /5-test-in-web-app/config/express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/config/express.js -------------------------------------------------------------------------------- /5-test-in-web-app/config/security.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/config/security.js -------------------------------------------------------------------------------- /5-test-in-web-app/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/manifest.yml -------------------------------------------------------------------------------- /5-test-in-web-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/package.json -------------------------------------------------------------------------------- /5-test-in-web-app/public/css/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/css/extra.css -------------------------------------------------------------------------------- /5-test-in-web-app/public/css/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/css/footer.css -------------------------------------------------------------------------------- /5-test-in-web-app/public/css/retraining.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/css/retraining.css -------------------------------------------------------------------------------- /5-test-in-web-app/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/css/style.css -------------------------------------------------------------------------------- /5-test-in-web-app/public/css/training.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/css/training.css -------------------------------------------------------------------------------- /5-test-in-web-app/public/fonts/icon-fonts/README.md: -------------------------------------------------------------------------------- 1 | Icon Fonts are compiled here. -------------------------------------------------------------------------------- /5-test-in-web-app/public/fonts/icon-fonts/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/fonts/icon-fonts/icons.eot -------------------------------------------------------------------------------- /5-test-in-web-app/public/fonts/icon-fonts/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/fonts/icon-fonts/icons.svg -------------------------------------------------------------------------------- /5-test-in-web-app/public/fonts/icon-fonts/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/fonts/icon-fonts/icons.ttf -------------------------------------------------------------------------------- /5-test-in-web-app/public/fonts/icon-fonts/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/fonts/icon-fonts/icons.woff -------------------------------------------------------------------------------- /5-test-in-web-app/public/images/VR zip icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/images/VR zip icon.svg -------------------------------------------------------------------------------- /5-test-in-web-app/public/images/down-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/images/down-arrow.png -------------------------------------------------------------------------------- /5-test-in-web-app/public/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/images/favicon.ico -------------------------------------------------------------------------------- /5-test-in-web-app/public/images/icons/alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/images/icons/alert.svg -------------------------------------------------------------------------------- /5-test-in-web-app/public/images/icons/down-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/images/icons/down-arrow.svg -------------------------------------------------------------------------------- /5-test-in-web-app/public/images/icons/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/images/icons/link.svg -------------------------------------------------------------------------------- /5-test-in-web-app/public/images/icons/reset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/images/icons/reset.svg -------------------------------------------------------------------------------- /5-test-in-web-app/public/images/link_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/images/link_image.png -------------------------------------------------------------------------------- /5-test-in-web-app/public/images/loading-indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/images/loading-indicator.gif -------------------------------------------------------------------------------- /5-test-in-web-app/public/images/samples/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/images/samples/1.jpg -------------------------------------------------------------------------------- /5-test-in-web-app/public/images/samples/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/images/samples/2.jpg -------------------------------------------------------------------------------- /5-test-in-web-app/public/images/samples/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/images/samples/3.jpg -------------------------------------------------------------------------------- /5-test-in-web-app/public/images/samples/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/images/samples/4.jpg -------------------------------------------------------------------------------- /5-test-in-web-app/public/images/samples/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/images/samples/5.jpg -------------------------------------------------------------------------------- /5-test-in-web-app/public/images/samples/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/images/samples/6.jpg -------------------------------------------------------------------------------- /5-test-in-web-app/public/images/samples/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/images/samples/7.jpg -------------------------------------------------------------------------------- /5-test-in-web-app/public/images/service-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/images/service-icon.svg -------------------------------------------------------------------------------- /5-test-in-web-app/public/images/up-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/images/up-arrow.png -------------------------------------------------------------------------------- /5-test-in-web-app/public/images/watson-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/images/watson-logo-white.svg -------------------------------------------------------------------------------- /5-test-in-web-app/public/images/watson-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/images/watson-logo.svg -------------------------------------------------------------------------------- /5-test-in-web-app/public/js/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/js/.eslintrc -------------------------------------------------------------------------------- /5-test-in-web-app/public/js/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/js/analytics.js -------------------------------------------------------------------------------- /5-test-in-web-app/public/js/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/js/bundle.js -------------------------------------------------------------------------------- /5-test-in-web-app/public/js/classNameMapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/js/classNameMapper.js -------------------------------------------------------------------------------- /5-test-in-web-app/public/js/classresults.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/js/classresults.jsx -------------------------------------------------------------------------------- /5-test-in-web-app/public/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/js/demo.js -------------------------------------------------------------------------------- /5-test-in-web-app/public/js/errormsg.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/js/errormsg.jsx -------------------------------------------------------------------------------- /5-test-in-web-app/public/js/image-boxes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/js/image-boxes.jsx -------------------------------------------------------------------------------- /5-test-in-web-app/public/js/membership.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/js/membership.js -------------------------------------------------------------------------------- /5-test-in-web-app/public/js/retraining.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/js/retraining.jsx -------------------------------------------------------------------------------- /5-test-in-web-app/public/js/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/js/state.js -------------------------------------------------------------------------------- /5-test-in-web-app/public/js/train.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/js/train.js -------------------------------------------------------------------------------- /5-test-in-web-app/public/js/use.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/js/use.js -------------------------------------------------------------------------------- /5-test-in-web-app/public/js/vendors/tealeaf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/public/js/vendors/tealeaf.js -------------------------------------------------------------------------------- /5-test-in-web-app/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/server.js -------------------------------------------------------------------------------- /5-test-in-web-app/views/includes/footer.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/views/includes/footer.jade -------------------------------------------------------------------------------- /5-test-in-web-app/views/includes/header.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/views/includes/header.jade -------------------------------------------------------------------------------- /5-test-in-web-app/views/includes/test.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/views/includes/test.jade -------------------------------------------------------------------------------- /5-test-in-web-app/views/includes/train.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/views/includes/train.jade -------------------------------------------------------------------------------- /5-test-in-web-app/views/includes/use.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/views/includes/use.jade -------------------------------------------------------------------------------- /5-test-in-web-app/views/layout.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/views/layout.jade -------------------------------------------------------------------------------- /5-test-in-web-app/views/mixins/sampleImages.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/views/mixins/sampleImages.jade -------------------------------------------------------------------------------- /5-test-in-web-app/views/mixins/sampleInput.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/views/mixins/sampleInput.jade -------------------------------------------------------------------------------- /5-test-in-web-app/views/testing.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/views/testing.jade -------------------------------------------------------------------------------- /5-test-in-web-app/views/thermometer.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/views/thermometer.jade -------------------------------------------------------------------------------- /5-test-in-web-app/views/train.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/views/train.jade -------------------------------------------------------------------------------- /5-test-in-web-app/views/use.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/5-test-in-web-app/views/use.jade -------------------------------------------------------------------------------- /6-play-with-cozmo/find.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/6-play-with-cozmo/find.py -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/README.md -------------------------------------------------------------------------------- /doc/source/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/doc/source/images/architecture.png -------------------------------------------------------------------------------- /pictures/cozmo-deer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/pictures/cozmo-deer.jpg -------------------------------------------------------------------------------- /pictures/cozmo-photos.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/pictures/cozmo-photos.zip -------------------------------------------------------------------------------- /pictures/cozmo-toys.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/pictures/cozmo-toys.jpg -------------------------------------------------------------------------------- /pictures/cozmo-training.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/pictures/cozmo-training.jpg -------------------------------------------------------------------------------- /pictures/cozmo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/pictures/cozmo.jpg -------------------------------------------------------------------------------- /pictures/slideshare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/pictures/slideshare.png -------------------------------------------------------------------------------- /pictures/training-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/pictures/training-data.png -------------------------------------------------------------------------------- /pictures/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/pictures/video.png -------------------------------------------------------------------------------- /pictures/web-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/visual-recognition-for-cozmo-with-tensorflow/HEAD/pictures/web-app.png --------------------------------------------------------------------------------