From 48b4462cdc6e9c37b971409a5b4e35360c629037 Mon Sep 17 00:00:00 2001 From: sayands Date: Wed, 25 Apr 2018 22:19:11 +0530 Subject: [PATCH 1/6] Added Inception Model Tutorial --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 8d7175f..cf55a4f 100644 --- a/README.md +++ b/README.md @@ -275,6 +275,7 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB * [Using Convolutional Neural Nets to Detect Facial Keypoints](http://danielnouri.org/notes/2014/12/17/using-convolutional-neural-nets-to-detect-facial-keypoints-tutorial/) * [Generate an Average Face using Python and OpenCV](https://www.learnopencv.com/average-face-opencv-c-python-tutorial/) * [Break A Captcha System using CNNs](https://medium.com/@ageitgey/how-to-break-a-captcha-system-in-15-minutes-with-machine-learning-dbebb035a710) +* [Use pre-trained Inception model to provide image predictions](https://medium.com/google-cloud/keras-inception-v3-on-google-compute-engine-a54918b0058) ### Miscellaneous: From 51a9eee8b0313fe1a3ff47ba3fde8e38de5580ee Mon Sep 17 00:00:00 2001 From: sayands Date: Wed, 25 Apr 2018 22:20:16 +0530 Subject: [PATCH 2/6] Added First CNN tutorial --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index cf55a4f..871669b 100644 --- a/README.md +++ b/README.md @@ -276,6 +276,7 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB * [Generate an Average Face using Python and OpenCV](https://www.learnopencv.com/average-face-opencv-c-python-tutorial/) * [Break A Captcha System using CNNs](https://medium.com/@ageitgey/how-to-break-a-captcha-system-in-15-minutes-with-machine-learning-dbebb035a710) * [Use pre-trained Inception model to provide image predictions](https://medium.com/google-cloud/keras-inception-v3-on-google-compute-engine-a54918b0058) +* [Create your first CNN](https://hackernoon.com/deep-learning-cnns-in-tensorflow-with-gpus-cba6efe0acc2) ### Miscellaneous: From 45c6df36f67974f0eab86ad6e4b6a9340a859df7 Mon Sep 17 00:00:00 2001 From: sayands Date: Wed, 25 Apr 2018 22:21:07 +0530 Subject: [PATCH 3/6] Added Facial Recognition pipeline --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 871669b..c1e3ea8 100644 --- a/README.md +++ b/README.md @@ -277,6 +277,7 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB * [Break A Captcha System using CNNs](https://medium.com/@ageitgey/how-to-break-a-captcha-system-in-15-minutes-with-machine-learning-dbebb035a710) * [Use pre-trained Inception model to provide image predictions](https://medium.com/google-cloud/keras-inception-v3-on-google-compute-engine-a54918b0058) * [Create your first CNN](https://hackernoon.com/deep-learning-cnns-in-tensorflow-with-gpus-cba6efe0acc2) +* [Build A Facial Recognition Pipeline](https://hackernoon.com/building-a-facial-recognition-pipeline-with-deep-learning-in-tensorflow-66e7645015b8) ### Miscellaneous: From 578d929b5bf8ca6696ba7e3353d01e3393495d48 Mon Sep 17 00:00:00 2001 From: sayands Date: Wed, 25 Apr 2018 22:22:18 +0530 Subject: [PATCH 4/6] Added Image Caption generator --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c1e3ea8..8a6e908 100644 --- a/README.md +++ b/README.md @@ -278,6 +278,7 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB * [Use pre-trained Inception model to provide image predictions](https://medium.com/google-cloud/keras-inception-v3-on-google-compute-engine-a54918b0058) * [Create your first CNN](https://hackernoon.com/deep-learning-cnns-in-tensorflow-with-gpus-cba6efe0acc2) * [Build A Facial Recognition Pipeline](https://hackernoon.com/building-a-facial-recognition-pipeline-with-deep-learning-in-tensorflow-66e7645015b8) +* [Build An Image Caption Generator](https://medium.freecodecamp.org/building-an-image-caption-generator-with-deep-learning-in-tensorflow-a142722e9b1f) ### Miscellaneous: From 6ce1f7e62f394302e74161d6a84669e7c9866daa Mon Sep 17 00:00:00 2001 From: sayands Date: Fri, 27 Apr 2018 00:49:31 +0530 Subject: [PATCH 5/6] Added Classifiation of Fruits problem --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 8a6e908..31ecb9c 100644 --- a/README.md +++ b/README.md @@ -269,6 +269,7 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB * [Write Linear Regression From Scratch in Python](https://www.youtube.com/watch?v=uwwWVAgJBcM) * [Step-By-Step Machine Learning In Python](https://machinelearningmastery.com/machine-learning-in-python-step-by-step/) * [Predict Quality Of Wine](https://medium.freecodecamp.org/using-machine-learning-to-predict-the-quality-of-wines-9e2e13d7480d) +* [Solving A Fruits Classification Problem](https://towardsdatascience.com/solving-a-simple-classification-problem-with-python-fruits-lovers-edition-d20ab6b071d2) ### Deep Learning: From 3ac50b2c407a44a97c64bb55365e8f6d208623f8 Mon Sep 17 00:00:00 2001 From: sayands Date: Fri, 27 Apr 2018 00:51:04 +0530 Subject: [PATCH 6/6] Added Face Recognition System tutorial --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 31ecb9c..67684f5 100644 --- a/README.md +++ b/README.md @@ -280,6 +280,7 @@ To get started, simply fork this repo. Please refer to [CONTRIBUTING.md](CONTRIB * [Create your first CNN](https://hackernoon.com/deep-learning-cnns-in-tensorflow-with-gpus-cba6efe0acc2) * [Build A Facial Recognition Pipeline](https://hackernoon.com/building-a-facial-recognition-pipeline-with-deep-learning-in-tensorflow-66e7645015b8) * [Build An Image Caption Generator](https://medium.freecodecamp.org/building-an-image-caption-generator-with-deep-learning-in-tensorflow-a142722e9b1f) +* [Make your Own Face Recognition System](https://medium.freecodecamp.org/making-your-own-face-recognition-system-29a8e728107c) ### Miscellaneous: