Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 2.02 KB

File metadata and controls

23 lines (18 loc) · 2.02 KB

Machine-Learning-Research

This repository will serve as a collection of machine learning resources, as well as examples we have created to demonstrate them.

Click Each Link to Track Our Progress (In Order):

  1. Making a Neural Network by Hand
  2. Re-Making a Neural Network in Keras
  3. Making a Custom Deep Neural Network in Keras
  4. Making a Convolutional Neural Network for Image Classification
  5. Making a Recurrent Neural Network for word processing
  6. Making Reinforcement Learning Neural Networks
  7. Deploying a Neural Network to a Web Service

Collaborators

Downloading images from Google

hardikvasa has an amazing git repository that allows you to download images from Google. Handy to scrap pictures for your neural network.

Issues

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