1 / 13

Introduction to Deep Learning with Keras

Introduction to Deep Learning with Keras. Machine Learning on Images. Given examples, can we train a computer to do:. Source - http ://cs231n.github.io/. Machine Learning on Images. Source - http ://cs231n.github.io/. Artificial Neural Networks. Signal goes in, via input layer

Télécharger la présentation

Introduction to Deep Learning with Keras

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Introduction to Deep Learning with Keras

  2. Machine Learning on Images Given examples, can we train a computer to do: Source - http://cs231n.github.io/

  3. Machine Learning on Images Source - http://cs231n.github.io/

  4. Artificial Neural Networks • Signal goes in, via input layer • Weighted links transfer input values to neurons in hidden layers • Signals are summed at hidden neurons and passed through transfer/activation function • Processed signal arrives at output layer • Decisions made using output signal(s)

  5. What’s in an (Artificial) Neuron? Source - http://cs231n.github.io/

  6. Why Deep Learning? More layers can encapsulate more knowledge More weights to train – need more data, need more computation

  7. Where’s the Knowledge? Weights encapsulate the knowledge of a network Network learns using an algorithm that optimize weights given examples Back propagation is commonly used – learn weights from examples using some linear algebra

  8. Classification Example – MNIST Which digit is it?

  9. Why Deep Learning? Different Classifiers on the MNIST Database DEEP https://en.wikipedia.org/wiki/MNIST_database

  10. Convolutional Neural Networks Complex architectures, many layers – really good for image recognition tasks Lots of computing power needed to do the training mathematics!

  11. GPUs to the Rescue! GPU cards are exceptionally well suited to Neural Network Mathematics Orders of magnitude faster than CPU-based training

  12. https://keras.io • High-level, open-source Python API • “Being able to go from idea to result with the least possible delay is key to doing good research” • Interface for TensorFlow, Microsoft Cognitive Toolkit, and Theano

  13. Installing a Conda Environment for Keras and TensorFlow with Jupyter Support $ module load python/3.6.4-anaconda $ conda create--name py3.6-keras python=3.6 ipykernelkerastensorflow-gpu pillow matplotlib $ ipython kernel install --user --name py3.6-tfgpu --display-name=“Keras(GPU)"

More Related