balaganesh102004 / PyTorchUltimateMaterial

This repo holds material for the Udemy course "PyTorch Ultimate"

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PytorchUltimate

This repo holds material for the Udemy course PyTorch Ultimate: From Basics to Cutting-Edge. You can find the course under this link.

Environment Installation from yml file

We work with Anaconda and use conda environments. You can replicate my environment by running:

C:\...> conda env create -f pytorch.yml

Environment Installation from scratch

If the installation from yml file fails, you can install the environment manually by running these commands:

C:\...> conda create -n pytorch python=3.10
C:\...> conda activate pytorch
(pytorch) C:\...> conda install pytorch torchvision torchaudio cpuonly -c pytorch
(pytorch) C:\...> conda install ipykernel
(pytorch) C:\...> conda install -c anaconda seaborn
(pytorch) C:\...> conda install scikit-learn
(pytorch) C:\...> $ conda install -c conda-forge detecto

About

This repo holds material for the Udemy course "PyTorch Ultimate"


Languages

Language:Python 100.0%