Last active
November 2, 2023 10:06
-
-
Save josepdecid/7fe5aa9120e176e1fb168ed7c873a550 to your computer and use it in GitHub Desktop.
Colab Reconnect
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Interval time to check if runtime is disconnected | |
interval = 1000 * 60; | |
// Busy/Reconnect button top-right | |
reloadButton = document.querySelector('#connect > paper-button > span') | |
setInterval(() => { | |
if (reloadButton.innerText == 'Reconnect') { | |
reloadButton.click(); | |
console.log('Restarting'); | |
} else console.log('Keeps working'); | |
}, interval); |
I'm not sure if this works anymore, just leaving it here as a reference!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sometimes Google Colab disconnects us from the runtime when the connection with our machine is bad, but the good part is that reconnecting the environment quickly allows us to continue the execution from the same point and not having to start again.