Farhan Mehar
Farhan Mehar

Reputation: 119

Google Colab Cell outputs Can be saved?

Can we save Google Colab Cell outputs along with Notebook for later use? Any method?

I want to save Colab Notebook along with cell outputs so that I use them later.

Upvotes: 4

Views: 9086

Answers (1)

Aravind G.
Aravind G.

Reputation: 431

I use version control (git) for most of my projects. So if I want to save the outputs of my Jupyter notebooks at a particular state, I use git to commit the notebook at that particular state, then I could revisit it anytime.

Other ways to save output could be -

  1. Saving the cell outputs as strings and then exporting them to text files.
  2. If the cell outputs consist of images, I just save the images on my computer.

Upvotes: 1

Related Questions