/dezero

DeZero is a python package that provides a deep learing framework. This code is based on "Deep Learning 3 made from scratch"

Primary LanguagePythonMIT LicenseMIT

DeZero

DeZero is a python package that provides a deep learing framework.
This package has minimal code and features similar to modern frameworks like PyTorch and TensorFlow.
This code is based on "Deep Learning 3 made from scratch", and you can refer to the original source code from here.

Setup

First, launch an ubuntu container using docker.

$ cd environments/cpu/
$ docker-compose up -d

Once the container has started, connect to it.

$ docker exec -it dezero_cpu /bin/bash

Next, create a virtual environment for python3.9 with poetry.

$ poetry install

Setup is complete by activating the virtual environment with the following command.

$ poetry shell

Examples

comming soon

License

DeZero is released under the MIT license.

References