├── .gitignore ├── README.md ├── image-to-tensor ├── README.md ├── index.html ├── package.json ├── src │ ├── index.js │ └── styles.css └── yarn.lock ├── joker-face ├── .gitignore ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── gatsby-config.js ├── package.json ├── src │ ├── pages │ │ ├── index.js │ │ └── styles.css │ └── utils │ │ └── jokerface.js ├── static │ ├── images │ │ ├── IMG_0640.jpg │ │ ├── mark-hamill-joker-face-mask.png │ │ └── result.gif │ └── models │ │ ├── face_landmark_68_tiny_model-shard1 │ │ ├── face_landmark_68_tiny_model-weights_manifest.json │ │ ├── tiny_face_detector_model-shard1 │ │ └── tiny_face_detector_model-weights_manifest.json └── yarn.lock ├── machine-learning.png ├── mobilenet ├── README.md └── index.html ├── nsfwjs ├── README.md ├── index.html ├── package.json ├── src │ ├── index.js │ └── styles.css └── yarn.lock ├── old-tv ├── README.md ├── images │ ├── old-tv.gif │ └── sam-balye-8apM7vbRP-U-unsplash.jpg ├── index.html ├── package.json ├── src │ ├── index.js │ └── styles.css └── yarn.lock ├── tensor-reversal ├── README.md ├── index.html ├── package.json ├── src │ ├── index.js │ └── styles.css ├── ts.reverse.png └── yarn.lock ├── tensorflowjs-template ├── README.md ├── index.html ├── package.json └── src │ ├── index.js │ └── styles.css └── vision ├── .gitignore ├── App.js ├── README.md ├── babel.config.js ├── images └── google-cloud-vision.gif ├── package.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | .cache 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/README.md -------------------------------------------------------------------------------- /image-to-tensor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/image-to-tensor/README.md -------------------------------------------------------------------------------- /image-to-tensor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/image-to-tensor/index.html -------------------------------------------------------------------------------- /image-to-tensor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/image-to-tensor/package.json -------------------------------------------------------------------------------- /image-to-tensor/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/image-to-tensor/src/index.js -------------------------------------------------------------------------------- /image-to-tensor/src/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding: 20px 40px; 3 | } 4 | -------------------------------------------------------------------------------- /image-to-tensor/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/image-to-tensor/yarn.lock -------------------------------------------------------------------------------- /joker-face/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/joker-face/.gitignore -------------------------------------------------------------------------------- /joker-face/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/joker-face/.prettierignore -------------------------------------------------------------------------------- /joker-face/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/joker-face/.prettierrc -------------------------------------------------------------------------------- /joker-face/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/joker-face/LICENSE -------------------------------------------------------------------------------- /joker-face/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/joker-face/README.md -------------------------------------------------------------------------------- /joker-face/gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/joker-face/gatsby-config.js -------------------------------------------------------------------------------- /joker-face/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/joker-face/package.json -------------------------------------------------------------------------------- /joker-face/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/joker-face/src/pages/index.js -------------------------------------------------------------------------------- /joker-face/src/pages/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/joker-face/src/pages/styles.css -------------------------------------------------------------------------------- /joker-face/src/utils/jokerface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/joker-face/src/utils/jokerface.js -------------------------------------------------------------------------------- /joker-face/static/images/IMG_0640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/joker-face/static/images/IMG_0640.jpg -------------------------------------------------------------------------------- /joker-face/static/images/mark-hamill-joker-face-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/joker-face/static/images/mark-hamill-joker-face-mask.png -------------------------------------------------------------------------------- /joker-face/static/images/result.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/joker-face/static/images/result.gif -------------------------------------------------------------------------------- /joker-face/static/models/face_landmark_68_tiny_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/joker-face/static/models/face_landmark_68_tiny_model-shard1 -------------------------------------------------------------------------------- /joker-face/static/models/face_landmark_68_tiny_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/joker-face/static/models/face_landmark_68_tiny_model-weights_manifest.json -------------------------------------------------------------------------------- /joker-face/static/models/tiny_face_detector_model-shard1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/joker-face/static/models/tiny_face_detector_model-shard1 -------------------------------------------------------------------------------- /joker-face/static/models/tiny_face_detector_model-weights_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/joker-face/static/models/tiny_face_detector_model-weights_manifest.json -------------------------------------------------------------------------------- /joker-face/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/joker-face/yarn.lock -------------------------------------------------------------------------------- /machine-learning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/machine-learning.png -------------------------------------------------------------------------------- /mobilenet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/mobilenet/README.md -------------------------------------------------------------------------------- /mobilenet/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/mobilenet/index.html -------------------------------------------------------------------------------- /nsfwjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/nsfwjs/README.md -------------------------------------------------------------------------------- /nsfwjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/nsfwjs/index.html -------------------------------------------------------------------------------- /nsfwjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/nsfwjs/package.json -------------------------------------------------------------------------------- /nsfwjs/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/nsfwjs/src/index.js -------------------------------------------------------------------------------- /nsfwjs/src/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding: 20px 40px; 3 | } 4 | -------------------------------------------------------------------------------- /nsfwjs/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/nsfwjs/yarn.lock -------------------------------------------------------------------------------- /old-tv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/old-tv/README.md -------------------------------------------------------------------------------- /old-tv/images/old-tv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/old-tv/images/old-tv.gif -------------------------------------------------------------------------------- /old-tv/images/sam-balye-8apM7vbRP-U-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/old-tv/images/sam-balye-8apM7vbRP-U-unsplash.jpg -------------------------------------------------------------------------------- /old-tv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/old-tv/index.html -------------------------------------------------------------------------------- /old-tv/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/old-tv/package.json -------------------------------------------------------------------------------- /old-tv/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/old-tv/src/index.js -------------------------------------------------------------------------------- /old-tv/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/old-tv/src/styles.css -------------------------------------------------------------------------------- /old-tv/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/old-tv/yarn.lock -------------------------------------------------------------------------------- /tensor-reversal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/tensor-reversal/README.md -------------------------------------------------------------------------------- /tensor-reversal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/tensor-reversal/index.html -------------------------------------------------------------------------------- /tensor-reversal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/tensor-reversal/package.json -------------------------------------------------------------------------------- /tensor-reversal/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/tensor-reversal/src/index.js -------------------------------------------------------------------------------- /tensor-reversal/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/tensor-reversal/src/styles.css -------------------------------------------------------------------------------- /tensor-reversal/ts.reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/tensor-reversal/ts.reverse.png -------------------------------------------------------------------------------- /tensor-reversal/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/tensor-reversal/yarn.lock -------------------------------------------------------------------------------- /tensorflowjs-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/tensorflowjs-template/README.md -------------------------------------------------------------------------------- /tensorflowjs-template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/tensorflowjs-template/index.html -------------------------------------------------------------------------------- /tensorflowjs-template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/tensorflowjs-template/package.json -------------------------------------------------------------------------------- /tensorflowjs-template/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/tensorflowjs-template/src/index.js -------------------------------------------------------------------------------- /tensorflowjs-template/src/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding: 20px 40px; 3 | } 4 | -------------------------------------------------------------------------------- /vision/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/vision/.gitignore -------------------------------------------------------------------------------- /vision/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/vision/App.js -------------------------------------------------------------------------------- /vision/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/vision/README.md -------------------------------------------------------------------------------- /vision/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/vision/babel.config.js -------------------------------------------------------------------------------- /vision/images/google-cloud-vision.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/vision/images/google-cloud-vision.gif -------------------------------------------------------------------------------- /vision/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/vision/package.json -------------------------------------------------------------------------------- /vision/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexbox/machine-learning-with-javascript/HEAD/vision/yarn.lock --------------------------------------------------------------------------------