Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 432 Bytes

File metadata and controls

15 lines (9 loc) · 432 Bytes

Introduction

Simple examples demonstrating techniques of deep learning model manipulation.

  • mnist-nn.py: 3-layer neural network as digit recognizer (MNIST).
  • mnist-nn-gpu.py: mnist-nn with GPU computing.
  • mnist-nn-data-parallelism.py: mnist-nn with data parallelism (MPI and GPU).

Setup development environment

Please refer to .

Misc.

src/dataset/* are dataset retrivers copied from Keras.