1 Star 0 Fork 0

Yinqiyu/learn_pytorch

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
reanme_dataset.py 340 Bytes
一键复制 编辑 原始数据 按行查看 历史
xiaoyin 提交于 2022-01-01 19:29 . Initial commit
import os
root_dir = 'dataset/train'
target_dir = 'ants_image'
img_path = os.listdir(os.path.join(root_dir, target_dir))
label = target_dir.split('_')[0]
out_dir = 'ants_label'
for i in img_path:
file_name = i.split('.jpg')[0]
with open(os.path.join(root_dir, out_dir,"{}.txt".format(file_name)),'w') as f:
f.write(label)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/yin-qiyu/learn_pytorch.git
git@gitee.com:yin-qiyu/learn_pytorch.git
yin-qiyu
learn_pytorch
learn_pytorch
master

搜索帮助