Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Training error #2

Open
yyyyzy1 opened this issue Jan 13, 2023 · 6 comments
Open

Training error #2

yyyyzy1 opened this issue Jan 13, 2023 · 6 comments

Comments

@yyyyzy1
Copy link

yyyyzy1 commented Jan 13, 2023

In the first round of training,there was a error''int' object has no attribute' in file 'utils_fit.py',line 87,in fit_one_epoch

@huTao1030
Copy link

In the first round of training,there was a error''int' object has no attribute' in file 'utils_fit.py',line 87,in fit_one_epoch

Can you describe in more detail the problem you're encountering?
Lines 86-89 are mainly used to record log files. You can try to delete it without affecting the training.

@yyyyzy1
Copy link
Author

yyyyzy1 commented Jan 16, 2023

In the first round of training,there was a error''int' object has no attribute' in file 'utils_fit.py',line 87,in fit_one_epoch

Can you describe in more detail the problem you're encountering? Lines 86-89 are mainly used to record log files. You can try to delete it without affecting the training.

非常感谢您的回复!我还想请教您一些问题,pre_train模型是放在那个地方使用呢?另外,进行可视化操作的文件是predict_yolo.py文件吗?非常感谢!

@huTao1030
Copy link

In the first round of training,there was a error''int' object has no attribute' in file 'utils_fit.py',line 87,in fit_one_epoch

Can you describe in more detail the problem you're encountering? Lines 86-89 are mainly used to record log files. You can try to delete it without affecting the training.

非常感谢您的回复!我还想请教您一些问题,pre_train模型是放在那个地方使用呢?另外,进行可视化操作的文件是predict_yolo.py文件吗?非常感谢!

预训练模型可以放在任意位置,但是需要修改代码中载入权重时的相对路径。另外predict_yolo.py是单独对目标检测分支的结果进行可视化。
如果还有什么疑问,欢迎提问。

@yyyyzy1
Copy link
Author

yyyyzy1 commented Jan 17, 2023

In the first round of training,there was a error''int' object has no attribute' in file 'utils_fit.py',line 87,in fit_one_epoch

Can you describe in more detail the problem you're encountering? Lines 86-89 are mainly used to record log files. You can try to delete it without affecting the training.

非常感谢您的回复!我还想请教您一些问题,pre_train模型是放在那个地方使用呢?另外,进行可视化操作的文件是predict_yolo.py文件吗?非常感谢!

预训练模型可以放在任意位置,但是需要修改代码中载入权重时的相对路径。另外predict_yolo.py是单独对目标检测分支的结果进行可视化。 如果还有什么疑问,欢迎提问。

非常感谢老师您的回复!我现在已经把整体大致跑出来了,但是还不太明白怎么进行论文里gaze estimation(GE)、gaze object prediction(GOD)的可视化,请问老师您的代码中有这部分的可视化操作吗?再次感谢老师!

@huTao1030
Copy link

目前版本中并未包含GE和GOD的可视化代码,如果有需要你可以尝试利用GE部分输出的heatmap作为蒙版进行相关的可视化。

In the first round of training,there was a error''int' object has no attribute' in file 'utils_fit.py',line 87,in fit_one_epoch

Can you describe in more detail the problem you're encountering? Lines 86-89 are mainly used to record log files. You can try to delete it without affecting the training.

非常感谢您的回复!我还想请教您一些问题,pre_train模型是放在那个地方使用呢?另外,进行可视化操作的文件是predict_yolo.py文件吗?非常感谢!

预训练模型可以放在任意位置,但是需要修改代码中载入权重时的相对路径。另外predict_yolo.py是单独对目标检测分支的结果进行可视化。 如果还有什么疑问,欢迎提问。

非常感谢老师您的回复!我现在已经把整体大致跑出来了,但是还不太明白怎么进行论文里gaze estimation(GE)、gaze object prediction(GOD)的可视化,请问老师您的代码中有这部分的可视化操作吗?再次感谢老师!

目前版本中并未包含GE和GOD的可视化代码,你可以尝试利用GE部分输出的heatmap作为蒙版进行相关的可视化操作。我们也会再后续的工作中对开源的代码进行整理完善。

@yyyyzy1
Copy link
Author

yyyyzy1 commented Jan 20, 2023

目前版本中并未包含GE和GOD的可视化代码,如果有需要你可以尝试利用GE部分输出的heatmap作为蒙版进行相关的可视化。

In the first round of training,there was a error''int' object has no attribute' in file 'utils_fit.py',line 87,in fit_one_epoch

Can you describe in more detail the problem you're encountering? Lines 86-89 are mainly used to record log files. You can try to delete it without affecting the training.

非常感谢您的回复!我还想请教您一些问题,pre_train模型是放在那个地方使用呢?另外,进行可视化操作的文件是predict_yolo.py文件吗?非常感谢!

预训练模型可以放在任意位置,但是需要修改代码中载入权重时的相对路径。另外predict_yolo.py是单独对目标检测分支的结果进行可视化。 如果还有什么疑问,欢迎提问。

非常感谢老师您的回复!我现在已经把整体大致跑出来了,但是还不太明白怎么进行论文里gaze estimation(GE)、gaze object prediction(GOD)的可视化,请问老师您的代码中有这部分的可视化操作吗?再次感谢老师!

目前版本中并未包含GE和GOD的可视化代码,你可以尝试利用GE部分输出的heatmap作为蒙版进行相关的可视化操作。我们也会再后续的工作中对开源的代码进行整理完善。

老师,您好!非常感谢您的回复,在您写的readme中提到:When you training the model, the index of gaze will be saved in gaze_performence.txt,但是当我train_mode=0的时候并没有这个txt文件生成,只有包含AUC,Dist,Ang的performance.csv文件,没有预测的目标结果txt,请问这是怎么回事呢?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants