colab_favicon_256px.png

What is Colaboratory?

Colaboratory, or "Colab" for short, allows you to write and execute Python in your browser, with

Whether you're a student, a data scientist or an AI researcher, Colab can make your work easier. Watch Introduction to Colab to learn more, or just get started below!

from matplotlib import pyplot as plt

ys = 200 + np.random.randn(100)

x = [x for x in range(len(ys))]

plt.plot(x, ys, '-')

plt.fill_between(x, ys, 195, where=(ys > 195), facecolor='g', alpha=0.6)

plt.title("Sample Visualization")

Colab is used extensively in the machine learning community with applications including:

To see sample Colab notebooks that demonstrate machine learning applications, see the machine learning examples below.