- Python Intro
- Linear and Logistic Regression
- Backpropagation
-
Colab 4 hour GPU sessions for free limited based on overall demand.
-
Kaggle 30 gpu hours a week and 20 TPU hours a week. More than enough to do you course projects.
-
Lightning AI 22 gpu hours a month.
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.
-
To create an environment:
conda create --name <my-env> python=3.11Replace
<my-env>with the name of your environment. -
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. -
Then you need to activate your environment :
conda activate <my-env> -
Then you can install the necessary libraries :
pip install -r requirements.txt