-
Notifications
You must be signed in to change notification settings - Fork 82
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
Confusion about yaw
and pitch
.
#32
Comments
Have you found the reason why? If left as is, can it be trained? |
line 207 train.py: pitch, yaw = model(images_gaze) |
It turns out the pipeline was not written by the authors, but it was created in #18. So perhaps the PR author would know the answer. |
I'm pretty certain that it's flipped accidently here and then also in the draw_gaze function (vis.py). So the correct order should be |
In your model, the forward function returns
pre_yaw_gaze
andpre_pitch_gaze
:L2CS-Net/l2cs/model.py
Line 70 in a4d8f7f
However, in the pipeline, the two variables are assigned as
gaze_pitch
andgaze_yaw
:L2CS-Net/l2cs/pipeline.py
Line 122 in a4d8f7f
It seems
yaw
andpitch
are reversed. Why would this be the case?The text was updated successfully, but these errors were encountered: