Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to see the execution time and execution status in Google Colab?

I am trying to run the notebook in Google Colab. I am wondering if there is a way for me to know if the cell is run and how long it took to run the cell (in milliseconds).

like image 858
vinu Avatar asked Nov 30 '25 21:11

vinu


1 Answers

You can do this to get the running time of each cell (similar to the ExecuteTime extension for Jupyter Notebook):

!pip install ipython-autotime
%load_ext autotime

This is how it'll look after running the above code: enter image description here

like image 85
Harsha Avatar answered Dec 03 '25 10:12

Harsha



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!