Ten Steps to Keras @ PyData London 2017
leriomaggio
released this
22 Aug 12:34
·
15 commits
to master
since this release
Deep Learning with Keras and Tensorflow
Valerio Maggio: PostDoc Data Scientist @ FBK/MPBA
Contacts:
@leriomaggio | [email protected] |
Library Versions
import keras
print('keras: ', keras.__version__)
# optional
import theano
print('Theano: ', theano.__version__)
import tensorflow as tf
print('Tensorflow: ', tf.__version__)
keras: 2.0.2
Theano: 0.9.0
Tensorflow: 1.0.1
Goal
- Introduce main features of Keras APIs to build Neural Networks.
- Learn how to implement simple and complex Deep Neural Networks Architectures using Keras.
- Discover Keras Implementation and Internals.
- Note: examples and hands-on exercises will be provided along the way.
Outline in Ten (~ish) Notebooks
- Multi-layer Fully Connected Networks (and the backends)
- Hidden Layers features and Embeddings
- Convolutional Networks
- Hyperparameter Tuning
- Cutsom Layers
- Deep CNN and Residual Networks
- Transfer Learning and Fine Tuning
- Recursive Neural Networks
- AutoEncoders
- Multi-Modal Networks