load image dataset (folder or zip) located in Google Drive to Google Colab?

前端 未结 3 698
礼貌的吻别
礼貌的吻别 2020-12-29 10:36

I have a dataset of images on my Google Drive. I have this dataset both in a compressed .zip version and an uncompressed folder.

I want to train a CNN using Google C

3条回答
  •  情话喂你
    2020-12-29 11:28

    To update the answer. You can right now do it from Google Colab

    # Load the Drive helper and mount
    from google.colab import drive
    
    # This will prompt for authorization.
    drive.mount('/content/drive')
    
    !ls "/content/drive/My Drive"
    

    Google Documentation

提交回复
热议问题