Skip to content

Aleksis99/Deep-Learning-With-Pytorch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Deep-Learning-With-Pytorch

Code and material for the Deep Learning with Pytorch Course

Exercises' Topics

  1. Python Intro
  2. Linear and Logistic Regression
  3. Backpropagation

Online Environments And Compute Resources

  1. Colab 4 hour GPU sessions for free limited based on overall demand.

  2. Kaggle 30 gpu hours a week and 20 TPU hours a week. More than enough to do you course projects.

  3. Lightning AI 22 gpu hours a month.

Environment

The course python version is 11. You can use the online Environments mentioned above but you can also setup a local environment if you want to run models locally. In the requirements.txt file you will find all the necessary libraries to run the notebooks. You can install them with pip.

  pip install requirements.txt

Conda is recommended for managing you environment.

  1. To create an environment:

      conda create --name <my-env> python=3.11
    

    Replace <my-env> with the name of your environment.

  2. When conda asks you to proceed, type y:

    proceed ([y]/n)?

    This creates the myenv environment in /envs/. No packages will be installed in this environment.

  3. Then you need to activate your environment :

      conda activate <my-env>
    
  4. Then you can install the necessary libraries :

      pip install -r requirements.txt
    

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published