Colaboratory

Dal notebook ufficiale

Colaboratory o, in breve, “Colab” ti permette di scrivere ed eseguire codice Python nel tuo browser con i seguenti vantaggi:

  • Nessuna configurazione necessaria
  • Accesso gratuito alle GPU
  • Condivisione semplificata

Da Colaboratory > Frequently Asked Questions

Colaboratory, or “Colab” for short, is a product from Google Research.
Colab allows anybody to write and execute arbitrary python code through the browser, and is especially well suited to machine learning, data analysis and education.
More technically, Colab is a hosted Jupyter notebook service that requires no setup to use, while providing free access to computing resources including GPUs.


Colab notebooks are stored in Google Drive, or can be loaded from GitHub.
Colab notebooks can be shared just as you would with Google Docs or Sheets. Simply click the Share button at the top right of any Colab notebook.
All Colab notebooks are stored in the open source Jupyter notebook format (.ipynb).

Osserva

  1. I documenti che produci con Colab sono compatibili con il formato dei notebook Jupyter
  2. Si tratta di blocchi di testo formattato intervallati con blocchi di codice Python eseguibile in modo interattivo.
  3. All’interno di una cella di testo puoi inserire anche collegamenti ipertestuali, immagini, formule LaTeX, grafica SVG, …
  4. All’interno di una cella di codice puoi utilizzare il linguaggio Python insieme con le librerie più richieste del momento: numpy (algebra lineare), matplotlib, pandas, tensorflow, …
  5. I dati e i risultati possono essere importati/esportati in diversi modi.