Skip to content

Latest commit

 

History

History
68 lines (44 loc) · 1.24 KB

README.md

File metadata and controls

68 lines (44 loc) · 1.24 KB

Build Status codecov Code Climate

DNN

Automatic differentiation deep neural network framework.

Getting Started

python >= 3.5.

Installing

Please upgrade pip before installing.

$ pip install -U pip setuptools

There are two ways to install.

  • git clone & install
$ git clone https://github.com/ruimashita/dnn.git
$ cd dnn
$ pip install .
  • install from github
$ pip install git+https://github.com/ruimashita/dnn.git

Example

$ python examples/mnist_softmax.py
$ python examples/iris_mlp.py

Test

$ docker-compose -p dnn build test
$ docker-compose -p dnn run --rm test

Docs

API Docs: https://dnn.netlify.com/

Manually build docs

$ docker-compose -p dnn build build-docs
$ docker-compose -p dnn run --rm build-docs

Override current docs.

$ docker-compose -p dnn run --rm build-docs sphinx-apidoc -f -o ./ ../../dnn/