Replies: 3 comments 2 replies
-
Whoa very interesting. Can you share a screenshot of what you noticed in Colab? I haven't seen that before |
Beta Was this translation helpful? Give feedback.
-
In the demo video attached, you can see how for a brief moment; it shows the line 3 in the cell block executing (with a green dot next to it) and in the footer area of the screen, the underlying methods which are executed is shown for a short period of time. Could've chosen a better video demo to showcase this in a better fashion; just wanted to give a basic idea. You see it happening in AI/ML related model creation notebooks often. demo.-.Trim.mp4 |
Beta Was this translation helpful? Give feedback.
-
Hope the above demo gave an initial idea/concept of what |
Beta Was this translation helpful? Give feedback.
-
Was referring a friend's colab notebook and noticed how Google Colab displays the runtime (underlying methods of libraries that are being executed currently) with a small dot beside the line which is executing. Mostly, this happens in expensive cells (where you are trying out something like model.fit()).
If there are expensive computations; show the methods that are executing and the line in the cell blocks correspondingly. Like a green arrow like sign indicating that the line in the cell block that is executing at that moment and the methods (maybe of a library like the model.fit function) which are underlying/under the hood operations.
For example:
Over here, I had created a
mo.ui.slider
and had used a hyperparameter used in fitting the value. This proved to be expensive as the cell runs for a minimum of 2+ minutes locally.Beta Was this translation helpful? Give feedback.
All reactions