The mission that this repo serves:
- 540 minutes
- 70-100 people
- get together remotely
- 2 weeks to prepare
- teach deep learning
Note
Visit https://psteinb.github.io/deeplearning540 to dive into the content.
Please refer to https://python-poetry.org/docs/#installation for the installation of Poetry. You can verify your installation using below command:
$ poetry --version
- Clone the repository to some folder of your choice on your local system and change your current directory into the root of the project.
$ git clone https://github.com/psteinb/deeplearning540.git
$ cd ./deeplearning540
- The project's dependencies are managed with Poetry. To build the project locally run below lines of code in your terminal:
$ poetry install
$ poetry run make html
If all dependencies are properly installed you only are required to execute the last command:
$ poetry run make html
$ # Alternative way
$ poetry shell # This enables the environment for the current session
$ make html
This will place the generated documentation in build/html
. Open
index.html
with the browser of your choice to see the changes you
made in action.