热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

OCR训练常见问题(1)

报错图片数量太少Exception:Thenumberofthewholedata(800)issmallerthanthebatch_size*devices_num*num_

报错图片数量太少

Exception: The number of the whole data (800) is smaller than the batch_size * devices_num * num_workers (2048)----------------------
Error Message Summary:
----------------------
FatalError: Blocking queue is killed because the data reader raises an exception.[Hint: Expected killed_ !&#61; true, but received killed_:1 &#61;&#61; true:1.] (at /paddle/paddle/fluid/operators/reader/blocking_queue.h:154)[operator < read > error]

搜索FatalError: Blocking queue is killed because the data reader raises an exception.发现报这个错的还不少。。。我的应该就是因为上面所说的 整体数据量太小了导致的&#xff0c;重新导一遍数据好了&#xff0c;多产一些&#xff0c;产2400张好了。


CPU_NUM设置问题

import ujson error: No module named &#39;ujson&#39; use json
2020-09-29 06:24:37,367-INFO: places would be ommited when DataLoader is not iterable
2020-09-29 06:24:37,367-INFO: Distort operation can only support in GPU.Distort will be set to False.
2020-09-29 06:24:37,746-INFO: Loading parameters from ./pretrain_models/rec_mv3_none_bilstm_ctc/best_accuracy...
// 加载预训练模型参数
2020-09-29 06:24:37,821-WARNING: variable ctc_fc_b_attr not used
2020-09-29 06:24:37,821-WARNING: variable ctc_fc_w_attr not used
2020-09-29 06:24:37,878-INFO: Finish initing model from ./pretrain_models/rec_mv3_none_bilstm_ctc/best_accuracy
// 初始化模型完成
W0929 06:24:37.938328 116973 build_strategy.cc:170] fusion_group is not enabled for Windows/MacOS now, and only effective when running with CUDA GPU.
!!! The CPU_NUM is not specified, you should set CPU_NUM in the environment variable list.
CPU_NUM indicates that how many CPUPlace are used in the current task.
And if this parameter are set as N (equal to the number of physical CPU core) the program may be faster.export CPU_NUM&#61;8 # for example, set CPU_NUM as number of physical CPU core which is 8.!!! The default number of CPU_NUM&#61;1.

根据github-issue_Add warning info If CPU_NUM is not set可知&#xff0c;使用之前需要设置一个 CPU_NUM系统变量。
但是这只是一个警告信息&#xff0c;其实不影响程序运行。。。
然后等了很久很久。。。。才出现第一行 训练结果&#xff1a;

2020-09-29 06:30:16,110-INFO: epoch: 1, iter: 10, lr: 0.000500, ‘loss’: 22621.375, ‘acc’: 0.0, time: 30.381

考虑改一下那个CPU_NUM吧&#xff0c;不然训练太慢了。。。

Linux查看物理CPU个数、核数、逻辑CPU个数
ubuntu环境变量的三种设置方法

# 查看物理CPU个数
[root&#64;AAA ~]$ cat /proc/cpuinfo| grep "physical id"| sort| uniq| wc -l
1
# 查看每个物理CPU中core的个数(即核数)
[root&#64;AAA ~]$ cat /proc/cpuinfo| grep "cpu cores"| uniq
8
# 查看逻辑CPU的个数
[root&#64;AAA ~]$ cat /proc/cpuinfo| grep "processor"| wc -l
8
# 逻辑cpu个数&#61;物理cpu个数*每个cpu中core的个数
(py37) root&#64;XX:/home/XXX/paddleOCR/PaddleOCR$ cd
(py37) root&#64;XX:~$ vim ~/etc/profile
(py37) root&#64;XX:~$ cd ../
(py37) root&#64;XX:/$ ls
bin boot dev etc home initrd.img initrd.img.old lib lib64 lost&#43;found media mnt opt proc root run sbin snap srv sys tmp usr var vmlinuz vmlinuz.old
(py37) root&#64;XX:/$ vim etc/profile$ vim /etc/profile
在里面加入&#xff1a;
export CPU_NUM&#61;1
使生效
source profile
查看是否生效
echo $CPU_NUM

提示训练图片集不存在

在这里插入图片描述
解决方法&#xff1a;很容易发现是因为存放图片的文件夹名不一致&#xff0c;修改一下即可。
在这里插入图片描述
在这里插入图片描述


提示缺少yml参数文件

在这里插入图片描述
将缺少的文件夹复制到tools文件夹。

或者可以使用终端绝对路径直接调用


训练和评估的效果都特别好&#xff0c;预测的效果却特别差

这个是数据预处理的问题&#xff0c;paddleOCR官方给的推理程序里数据预处理的方式和训练程序里数据预处理的方式不完全一样&#xff0c;导致了训练时输入神经网络的张量维度和预测时输入神经网络的张量维度不一样&#xff0c;所以即使权重训练得很好&#xff0c;预测效果也会出现偏差。更改方式如下。
首先&#xff0c;要确保训练的配置文件里image_shape参数和推理的参数设置里rec_image_shape参数的值要是一样的&#xff0c;训练的配置文件在configs/rec里面&#xff0c;推理的参数设置在tools/infer/utility.py文件里面。


RuntimeError : ( PreconditionNotMet ) The third-party dynamic library(cublas64_102.dll;cublas64_10.d11)that Paddle deperon is not configured correctly(error code is 126)

只用cpu就没有这样的问题&#xff0c;这个问题是由于英伟达CUDA安装不正确导致的
解决方法&#xff1a;
它说缺cublas64_10.dll&#xff0c;我就在英伟达显卡加速包里找&#xff0c;发现这里有cublas64_100.dll,通过修改文件名去让其去被调用。


推荐阅读
author-avatar
用户d4k2wd8en1
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有