"No one is harder on a talented person than the person themselves" - Linda Wilkinson ; "Trust your guts and don't follow the herd" ; "Validate direction not destination" ;

January 31, 2022

Colab Experiment Tips

#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
view raw colabtips.py hosted with ❤ by GitHub

 


Keep Exploring

No comments: