天天看点

jupyter notebook上传整个文件夹

先压缩成压缩文件,上传后再进行解压

import zipfile

import os

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

files.extractall(os.getcwd())

jupyter notebook上传整个文件夹

继续阅读