当前位置 博文首页 > 粽子小黑的博客:Google Colab使用记录

    粽子小黑的博客:Google Colab使用记录

    作者:[db:作者] 时间:2021-08-11 12:51

    一、购买Google Colab Pro

    Colab Pro 值得花 9.9$/mon 订阅吗?来看这篇完整评测

    二、使用GPU

    Runtime -> Change runtime type -> GPU -> High RAM

    三、让Colab不断连

    function ClickConnect(){
    colab.config
    console.log("Connnect Clicked - Start"); 
    document.querySelector("#top-toolbar > colab-connect-button").shadowRoot.querySelector("#connect").click();
    console.log("Connnect Clicked - End");
    };
    setInterval(ClickConnect, 60000)
    

    在网页里面Console输入如上代码
    在这里插入图片描述

    四、挂载Google Drive

    在谷歌云盘上传数据集 | 代码,然后在notebook中挂载谷歌云盘

    from google.colab import drive
    drive.mount('/content/drive')
    

    在这里插入图片描述

    点击URL,输入验证码
    在这里插入图片描述
    然后就可以使用了

    Tips

    使用谷歌Colab Notebooks,这6个小技巧你需要掌握

    cs
    下一篇:没有了