deep_shf

Results 35 comments of deep_shf

我有这个错误 ERROR in training loop or eval/save model. Training completed in 18.118 hours. Traceback (most recent call last): File "tools/train_face.py", line 86, in main(args) File "tools/train_face.py", line 76, in main...

> 你这明显有问题啊,怎么可能这么差啊 问题158 也是这个问题。我也暂时还没找到问题在哪。按道理来说数据格式一致之后 就可以训起来的。

> 我都挺正常的,就是训练到最后的mAP不如YOLOV5。你可以查看一下你的标签,也可以查看一下你的标签有没有跟图片尺寸归一化。 我的人脸数据集 之前是yolov5face的 也是正常的训练,推理也没问题。。标签是没问题的,检查过了。。你的是什么数据集,用的什么配置文件?

> 配置文件用的都是默认的,没改变。 我是人脸数据,网络改小了。可能有些超参数没适配吧 多进行几次实验找找问题

> 那你训练后面几百个epoch也是这么低m吗 报错了后面。。保存模型的时候吧可能是 ERROR in training loop or eval/save model. Training completed in 18.118 hours. Traceback (most recent call last): File "tools/train_face.py", line 86, in main(args) File "tools/train_face.py", line 76,...

> Hi, which dataset are you using? i use the widerface and myself own datasets,reduce the flops to 60M,The accuracy of the validation set is very poor: Inferencing model in...

> @Rjshrivastav 这是一种方法,我需要一个脚本来获取单个图像并返回边界框和类标签。 改写一下infer的代码。 def infer(self, conf_thres, iou_thres, classes, agnostic_nms, max_det, save_dir, save_txt, save_img, hide_labels, hide_conf): ''' Model Inference and results visualization ''' for img_path in tqdm(self.img_paths): img, img_src =...

> When the model is converted to onnx, there are many “gather” in the model. How to eliminate these structures。we used "onnxsim"

> 嗨@ak9250,非常感谢您的建议。不过这几天忙着研究其他课题,恐怕暂时没有时间更新项目。 对于提取动作单元,您可以查看https://github.com/donydchen/ran_replicate/blob/master/tools/extract_au.py以获得一些参考。 要使用其他数据集,您需要通过继承[base_dataset.py](https://github.com/donydchen/ganimation_replicate/blob/master/data/base_dataset.py)创建一个特定的数据集类。基本上,您只需复制[celeba.py](https://github.com/donydchen/ganimation_replicate/blob/master/data/celeba.py)并修改几行代码即可适应您自己的数据集。然后在[data_loader.py](https://github.com/donydchen/ganimation_replicate/blob/master/data/data_loader.py)中调用您的数据集类。 希望它有所帮助。 Can you provide OPENFACE code to extract action units

> 每个系统里面生成的表情au参数都不一样,所以你需要重新训练调整,不能直接使用demo 发自我的iPhone > […](#) > ------------------ Original ------------------ From: AndyWang