猫狗识别之BUG汇总

一、github登不上去问题

下载watt toolkit 下载地址:https://steampp.net/

可以下载后加速,访问github

二、猫狗总体参考核心

B哥的博客

https://github.com/bubbliiiing/classification-keras?tab=readme-ov-file

三、CSDN很多会员才能阅读问题

根据这个大佬的博客可以解决会员观看问题

总结就是用插件去解决

https://www.leonx.cn/archives/38/

四、图片分类

我有两万五图片大佬忘记分两个文件夹-我可以选择手动比较累,也没技术,我根据大佬

https://blog.csdn.net/weixin_45181512/article/details/129613604

这篇文章解决

会员才能阅读,可以使用上述方法解决

一分二

python 复制代码
import os
import shutil

# 设置文件路径
file_path = r"D:\Pycharm\train"

# 遍历目录下的所有文件
for file_name in os.listdir(file_path):
    # 判断当前路径是否为文件夹
    if os.path.isdir(os.path.join(file_path, file_name)):
        continue

    # 获取文件名和扩展名
    name, ext = os.path.splitext(file_name)

    # 用切片根据文件名判断文件类型
    # 使用了切片出的前五个字符来作为文件夹的名称,并将文件移动到对应的文件夹中。
    type_str = name[:2]
    folder_path = os.path.join(file_path, type_str)

    # 用split根据文件名判断文件类型
    # 使用split函数以符号"_"作为分隔符,将文件名分割成多个字符串,然后使用第一个字符串作为文件夹名称。
    # type_str = name.split("_")[0]
    # folder_path = os.path.join(file_path, type_str)

    # 如果文件夹不存在,则创建
    if not os.path.exists(folder_path):
        os.mkdir(folder_path)

    # 拼接文件路径
    file_path_new = os.path.join(folder_path, file_name)

   # 判断目标路径中是否已经存在同名文件
    if os.path.exists(file_path_new):
        print(f"File {file_name} already exists in folder {type_str}")
    else:
        # 移动文件到对应的文件夹中
        shutil.move(os.path.join(file_path, file_name), file_path_new)
        print(f"File {file_name} moved to folder {type_str}")

五、将代码封装成为exe

使用清华源下载

pip install -i https://mirrors.aliyun.com/pypi/simple/ pyinstaller

执行

Pyinstaller -F _你py文件名字.py

执行完毕会发现生成了几个文件夹,打开其中名为dist的文件夹。

六、多文件各自分类单独文件夹

python 复制代码
import os
from PIL import Image

# 打开源文件夹
src_folder = "D:/Pycharm/train"
filelist = os.listdir(src_folder)

# 循环遍历源文件夹中的图片
for filename in filelist:
    # 跳过非图片文件
    if not filename.endswith('.jpg') and not filename.endswith('.png'):
        continue

    # 获取图片分类标签
    label = filename.split('.')[0:2]
    #print(label)

    # 打开图片文件
    img = Image.open(os.path.join(src_folder, filename))

    # 新建子文件夹
    dst_folder = f'{label}s'
    if not os.path.exists(dst_folder):
        os.makedirs(dst_folder)

    # 复制文件到目标文件夹
    dst_path = os.path.join(dst_folder, filename)
    img.save(dst_path)

七、安装库包命令

pip install -r requirements.txt

八、看B哥的初代猫狗cpu版本的至于后来的GPU错误太多明天在整

https://blog.csdn.net/weixin_44791964/article/details/102779878?ops_request_misc=%257B%2522request%255Fid%2522%253A%2522A304EEFE-919C-42B3-88A6-3430E7E3355A%2522%252C%2522scm%2522%253A%252220140713.130102334.pc%255Fblog.%2522%257D\&request_id=A304EEFE-919C-42B3-88A6-3430E7E3355A\&biz_id=0\&utm_medium=distribute.pc_search_result.none-task-blog-2~blog~first_rank_ecpm_v1\~rank_v31_ecpm-2-102779878-null-null.nonecase\&utm_term=猫狗\&spm=1018.2226.3001.4450

九、keras内部版本问题

直接暴力导入

十、版本问题tf

十一、路径问题

标签和图片要对应好

'十二、导库的问题

十三、训练成功开始迭代

相关推荐
我有一棵树12 小时前
style标签没有写lang=“scss“引发的 bug 和反思
前端·bug·scss
℡52Hz★13 小时前
如何正确定位前后端bug?
前端·vue.js·vue·bug
ShiinaKaze2 天前
【MCU】CH591用软件 I2C 出现的 bug
mcu·bug·i2c
阑梦清川4 天前
用户中心项目教程(二)---umi3的使用出现的错误
bug
JZC_xiaozhong5 天前
支付宝“政府补贴”bug事件背后的权限管理启示
大数据·数据库·安全·ci/cd·金融·云计算·bug
做测试的喵酱5 天前
在 JIRA 中利用仪表盘功能生成 Bug 相关图表的手册
bug·jira
我只有一岁半5 天前
记一次数据库连接 bug
数据库·bug
伪_装5 天前
[Bug]libGL.so.1: cannot open shared object file: No such file or directory
人工智能·opencv·bug
_小杜小杜_5 天前
Jira中bug的流转流程
bug·jira
程序员的面试宝典5 天前
-bash: /java: cannot execute binary file
bug