Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 1.06 KB

README.md

File metadata and controls

41 lines (28 loc) · 1.06 KB

Introduction to PyTorch

This repository contains a set of notebooks for beginners in PyTorch.

Requirements

For specific requirements refer to requirements.txt file.

Installation

Binder

You can use Binder. It does not require any installation, just click the button below:

Binder

Conda

Make sure you have conda installed.

Linux or Mac

conda env create -f environment.yml
conda activate intro_to_pytorch
python -m ipykernel install --user --name=intro_to_pytorch
jupyter notebook

Windows

conda env create -f environment.yml
conda activate intro_to_pytorch
conda install pywin32
python -m ipykernel install --user --name=intro_to_pytorch
jupyter notebook

References

During development of these notebooks, following sources have been used as a source of inspiration: