This repository will serve as a collection of machine learning resources, as well as examples we have created to demonstrate them.
- Making a Neural Network by Hand
- Re-Making a Neural Network in Keras
- Making a Custom Deep Neural Network in Keras
- Making a Convolutional Neural Network for Image Classification
- Making a Recurrent Neural Network for word processing
- Making Reinforcement Learning Neural Networks
- Deploying a Neural Network to a Web Service
hardikvasa has an amazing git repository that allows you to download images from Google. Handy to scrap pictures for your neural network.
If you get this error that looks something like this: Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA keras you need to do this to get rid of the warning os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2'.
For more information visite this stackoverflow page