How to increase Google Colab storage

前端 未结 3 982
被撕碎了的回忆
被撕碎了的回忆 2020-12-18 00:42

I am working on a Dataset of 70gb

Earlier using df -BG command

I was being shown

Filesystem     1G-blocks  Used Available Use         


        
3条回答
  •  再見小時候
    2020-12-18 01:07

    If you pay for extra storage in google drive, you can mount drive into /content/drive/ folder

    as Follows

    from google.colab import drive
    drive.mount('/content/drive')
    > Then it will ask you for auth code
    

    You can even use it for unziping datasets (My scenario was that I had enough space on Colab to download 18G of Coco Dataset but not enough space to unzip it)

    !unzip /content/train2017.zip -d /content/drive/My\ Drive/COCO/train_2017
    

提交回复
热议问题