天天看點

jupyter notebook上傳整個檔案夾

先壓縮成壓縮檔案,上傳後再進行解壓

import zipfile

import os

files = zipfile.ZipFile(‘hymenoptera_data.zip’,‘r’)

files.extractall(os.getcwd())

jupyter notebook上傳整個檔案夾

繼續閱讀