[Google Colab](https://colab.research.google.com) is a great option for running notebooks on the cloud.
You can [[enable GPU or TPU in Google Colab]] to get access the [[compute]] needed for running [[base/Deep Learning/deep learning|deep learning]] models.
When using [[secrets]] in Colab, store them as key value pairs in the Secrets pane (left sidebar) and follow the instructions there to access them, for example
```python
from google.colab import userdata
userdata.get('API_KEY')
```
where `API_KEY` is the name you gave to your API key.
[[mount Google Drive to Google Colab]]