EuTECSSG / nnabla-examples

Neural Network Libraries https://nnabla.org/ - Examples

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Neural Network Libraries - Examples

This repository contains working examples of Neural Network Libraries. Before running any of the examples in this repository, you must install the Python package for Neural Network Libraries. The Python install guide can be found here.

Before running an example, also run the following command inside the example directory, to install additional dependencies:

cd example_directory
pip install -r requirements.txt

Docker image

If you have Docker and NVIDIA Docker on your system, you can build and run a CUDA-compatible Docker image which contains dependencies for running most of the examples in this repository.

The following command creates the Docker image.

docker build -t local/nnabla-examples . --build-arg CUDA_VER=9.2 --build-arg CUDNN_VER=7 --build-arg PYTHON_VER=3.6

The options followed by --build-arg specify the versions of some dependent software. You can ommit these arguments if you use the default. You can find the default versions at the lines containing ARG commands in the Dockerfile.

A Docker container of the created image can be launched by;

nvidia-docker run {options} local/nnabla-examples {command}

Note:

  • You must use a CUDA toolkit version compatible with your CUDA driver version on your host system.

About

Neural Network Libraries https://nnabla.org/ - Examples

License:Apache License 2.0


Languages

Language:Python 95.8%Language:Jupyter Notebook 2.2%Language:Shell 1.1%Language:C++ 0.6%Language:CMake 0.1%Language:Dockerfile 0.1%