-
-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
【问题】Google Colab环境问题 #3
Comments
(1)参考这篇博客,里面有这节课的图片下载代码 folder = 'teddys'
file = 'urls_teddys.txt'
path = Path('data/bears')
dest = path/folder
dest.mkdir(parents=True, exist_ok=True)
download_images(path/file, dest, max_pics=200)
# 如果下载出现问题,uncomment下列代码查看
# download_images(path/file, dest, max_pics=20, max_workers=0) (2)去fastai源代码里找image_download的定义 from google.colab import drive
drive.mount('/content/gdrive', force_remount=True)
root_dir = "/content/gdrive/My Drive/"
base_dir = root_dir + 'fastai-v3/' 现在,Google Drive 变成了一个文件系统允许标准python读写文件. 不要忘记给所有notebook的根目录地址前加上 base_dir . 例如, 在 lesson2-download.ipynb 5th cell, 做一下修改 path = Path(base_dir + 'data/bears')
dest = path/folder
dest.mkdir(parents=True, exist_ok=True) |
太感动了,谢谢王老师,谢谢您的回复,您辛苦了!
祝好!
周启红
…________________________________
发件人: Qiwen Wang <[email protected]>
发送时间: 2019年5月12日 22:45
收件人: wqw547243068/school-of-ai-beijing
抄送: zhouqihong; State change
主题: Re: [wqw547243068/school-of-ai-beijing] 如何下载图片 (#3)
(1)参考这篇博客<https://zhuanlan.zhihu.com/p/56567350>,里面有这节课的图片下载代码
folder = 'teddys'
file = 'urls_teddys.txt'
path = Path('data/bears')
dest = path/folder
dest.mkdir(parents=True, exist_ok=True)
download_images(path/file, dest, max_pics=200)
# 如果下载出现问题,uncomment下列代码查看
# download_images(path/file, dest, max_pics=20, max_workers=0)
(2)去fastai源代码里找image_download的定义<https://github.com/fastai/fastai/blob/master/fastai/widgets/image_downloader.py>
―
You are receiving this because you modified the open/close state.
Reply to this email directly, view it on GitHub<#3 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/AMBCA74VQZ4HZCKANJMJG23PVAUR3ANCNFSM4HMJTZOQ>.
|
不一定管用,上面是从drive里读数据,好像跟你的不一样,必要的话,把那你的代码贴出来 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No description provided.
The text was updated successfully, but these errors were encountered: