- SeedBank by Google: Collection of Interactive Machine Learning Examples.
👉 Check this section too.
Check the command shortcuts in Tools > Keyboard shortcuts (
Ctrl
+ M
H
), below are the most popular ones (If you use MacOS, replace Ctrl
with cmd
):We can use system commands in Colab with
!<command>
. For example, !git clone ...
Check out Git
If you don't want to use your username andd password, you can use "Personal access tokens" on Github. Create one here and then use,
F1
then Console and type,By default, the working directory is
/content/
. One can use below command to change to another place,From that point, we are working on
/content/data-science-learning
.Each user has a "machine" in
/content/
.Create a new cell and paste,
Run 2 times this cell, at the 2nd time, you can choose your file.
Run a cell containing following codes,
and then follow the guide on the screen. In order to access to the drive,
The cloned folder are stored in
/content/
. If you wanna pull
requests, use,To enable GPU backend for your notebook, go to Edit → Notebook Settings and set Hardware accelerator to GPU. (ref)
Jupyter Notebook has an option to 'Download as' HTML (or other) format. Google Colaboratory does not.
- Save your Colab notebook.
- In your terminal:
- Interrupt a long running python process: Runtime > Interrupt execution (
Alt + M + I
).
- Support Jupyter magic commands, check full list here.