gitextract_govqiphk/ ├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── dataset/ │ └── .gitignore ├── doc/ │ ├── conf.py │ ├── index.rst │ ├── layered.activation.rst │ ├── layered.cost.rst │ ├── layered.dataset.rst │ ├── layered.evaluation.rst │ ├── layered.example.rst │ ├── layered.gradient.rst │ ├── layered.network.rst │ ├── layered.optimization.rst │ ├── layered.plot.rst │ ├── layered.problem.rst │ ├── layered.trainer.rst │ └── layered.utility.rst ├── layered/ │ ├── __init__.py │ ├── __main__.py │ ├── activation.py │ ├── cost.py │ ├── dataset.py │ ├── evaluation.py │ ├── example.py │ ├── gradient.py │ ├── network.py │ ├── optimization.py │ ├── plot.py │ ├── problem.py │ ├── trainer.py │ └── utility.py ├── problem/ │ ├── mnist-relu-batch.yaml │ ├── mnist-relu-online.yaml │ ├── modulo.yaml │ ├── sparse-field-batch.yaml │ ├── sparse-field-online.yaml │ ├── sparse-max.yaml │ └── tying.yaml ├── pylintrc ├── setup.py └── test/ ├── __init__.py ├── fixtures.py ├── test_example.py ├── test_gradient.py ├── test_network.py ├── test_optimization.py ├── test_plot.py ├── test_problem.py ├── test_trainer.py └── test_utility.py