Extract Google Drive zip from Google colab notebook

前端 未结 12 1563
醉梦人生
醉梦人生 2020-12-25 12:29

I already have a zip of (2K images) dataset on a google drive. I have to use it in a ML training algorithm. Below Code extracts the content in a string format:



        
12条回答
  •  感情败类
    2020-12-25 13:24

    After mounting on drive, use shutil.unpack_archive. It works with almost all archive formats (e.g., “zip”, “tar”, “gztar”, “bztar”, “xztar”) and it's simple:

    import shutil
    shutil.unpack_archive("filename", "path_to_extract")
    

提交回复
热议问题