加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
download_omniglot.sh 536 Bytes
一键复制 编辑 原始数据 按行查看 历史
Jake Snell 提交于 2017-12-04 15:16 . add omniglot download script
#!/usr/bin/env bash
DATADIR=data/omniglot/data
mkdir -p $DATADIR
wget -O images_background.zip https://github.com/brendenlake/omniglot/blob/master/python/images_background.zip?raw=true
wget -O images_evaluation.zip https://github.com/brendenlake/omniglot/blob/master/python/images_evaluation.zip?raw=true
unzip images_background.zip -d $DATADIR
unzip images_evaluation.zip -d $DATADIR
mv $DATADIR/images_background/* $DATADIR/
mv $DATADIR/images_evaluation/* $DATADIR/
rmdir $DATADIR/images_background
rmdir $DATADIR/images_evaluation
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化