Prevent Disconnect
Running long sessions on Google Colab without any activity can cause the session to disconnect, losing all the data and variables from the earlier executed cells. This can be prevented by entering the following code into the browser console (opened by pressing + + ).
function ClickConnect() {
console.log("Working");
document.querySelector("colab-toolbar-button").click();
}
setInterval(ClickConnect, 60000);