This file contains 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
#https://stackoverflow.com/questions/54057011/google-colab-session-timeout | |
#Tip #1 | |
#Open the inspector view by typing Ctrl+ Shift + i and then clicking on console tab at top. | |
function ClickConnect(){ | |
console.log("Working"); | |
document.querySelector("#top-toolbar > colab-connect-button").shadowRoot.querySelector("#connect").click(); | |
} | |
setInterval(ClickConnect,60000) | |
#Tip #2 | |
#Upload files to colab | |
from google.colab import files | |
uploaded = files.upload() | |
#Tip #3 | |
#image show in colab | |
from google.colab.patches import cv2_imshow | |
Keep Exploring
No comments:
Post a Comment