我正在使用Google Colab来训练深度学习模型。但是后端会在一段时间(少于1小时的屏幕静止状态)后断开连接。我的模型的训练时间约为10小时。在该时间段内,以下修复程序也未成功。
function ConnectButton(){
console.log("Connect pushed");
document.querySelector("#connect").click()
}
setInterval(ConnectButton,60000);
所以我考虑过升级到Colab pro,但是有以下疑问: 1.Colab Pro是否也存在断开连接的问题? 2.Colab pro的优缺点是什么? 3.是否可以在普通Colab上解决上述问题?