Caius-Lu

Results 20 comments of Caius-Lu

> @Mobu59 @GuanLinHu抱歉我还没有重现你的问题,但是如果数据没有问题,可能是多线程和死锁引起的: 或许你可以试试:OMP_NUM_THREADS=1 MKL_NUM_THREADS=1 python train.py 或 --workers =0,测试问题依然存在。 我也遇到了这个问题, 将tcp:// 改为"env://" 之后就可以正常训练了。

应该是torch版本的问题, 我用的是1.9.1的版本

在自己的数据集,我也遇到了上述问题,以下是我的解决方法。 第一: 文件名不能有中文,有的话改代码,json dump 要改掉。 第二: 文件名不能含有192.168.,“.”这种字符,代码里会根据这个来split,导致annsImgIds和 self.getImgIds()对应不上, 文件名最好是纯粹的数字或者纯粹的字符串, 混用的话要改代码。 第三: 如果还有问题, debug一下,定位到行。

> 我的没有,为什么还是会出这样的错误,训练没问题,使用trian,val验证的时候总会报错 这个就是上面我说的问题啊,它是把验证集保存成json,然后预测也保存成json,再调用cooceval来做,如果验证集图片名有特殊字符,或者字符串和数字混用, 找不到对应的set就会报错,具体的还是要看你自己的数据和它的代码。

> 你直接断点到Cocoeval 那行代码呀,看具体是啥问题。

> 这个我也知道,目前就是公司断网,只能用内网,我环境都是用的docker,vscode连过去看,就是调不了代码,难受。 我们不会一个司吧, 可调呀。。 我用的也是docker,也是内网, 上不了外网的那种

> Traceback (most recent call last): File "tools/train.py", line 112, in main(args) File "tools/train.py", line 101, in main trainer = Trainer(args, cfg, device) File "/docker_code/yolov6/YOLOv6-main/yolov6/core/engine.py", line 43, in **init** self.train_loader,...

> When is the training code of pose open source? There is a problem with yolov5pose's code. I rewrote it myself, On my dataset, the position of the key points...

I still have a question, what is the difference between OTA and simOTA, is that one of the negative samples takes all the negative samples, and the other is the...

> SimOTA uses top K, OTA uses optimization. I alos use [this](https://github.com/TexasInstruments/edgeai-yolov5/tree/yolo-pose), but it has some problems. OTA also use dynamic_k_estimation, I think the difference of them is negative sample...