Subscribe to our newsletter
📬 Receive new lessons straight to your inbox (once a month) and join 40K+ developers in learning how to responsibly deliver value with ML.
Alternatives to Google Colab
Alternatively, you can run these notebooks locally by using JupyterLab. You should first set up a directory for our project, create a virtual environment and install jupyterlab.
Notebooks are made up of cells. There are two types of cells:
Click on a desired location in the notebook and create the cell by clicking on the ➕ TEXT (located in the top left corner).
Once you create the cell, click on it and type the following text inside it:
Once you type inside the cell, press the SHIFT and RETURN (enter key) together to run the cell.
To edit a cell, double click on it and make any changes.
Move a cell up and down by clicking on the cell and then pressing the ⬆ and ⬇ button on the top right of the cell.
Delete the cell by clicking on it and pressing the trash can button 🗑️ on the top right corner of the cell. Alternatively, you can also press ⌘/Ctrl + M + D.
Repeat the steps above to create and edit a code cell. You can create a code cell by clicking on the ➕ CODE (located in the top left corner).
Once you've created the code cell, double click on it, type the following inside it and then press Shift + Enter to execute the code.
1 | print ("Hello world!")
|
These are the basic concepts we'll need to use these notebooks but we'll learn few more tricks in subsequent lessons.
To cite this content, please use:
1
2
3
4
5
6 | @article{madewithml,
author = {Goku Mohandas},
title = { Notebooks - Made With ML },
howpublished = {\url{https://madewithml.com/}},
year = {2023}
}
|