In your model, the forward function returns pre_yaw_gaze and pre_pitch_gaze:
|
return pre_yaw_gaze, pre_pitch_gaze |
However, in the pipeline, the two variables are assigned as gaze_pitch and gaze_yaw:
|
gaze_pitch, gaze_yaw = self.model(img) |
It seems yaw and pitch are reversed. Why would this be the case?
In your model, the forward function returns
pre_yaw_gazeandpre_pitch_gaze:L2CS-Net/l2cs/model.py
Line 70 in a4d8f7f
However, in the pipeline, the two variables are assigned as
gaze_pitchandgaze_yaw:L2CS-Net/l2cs/pipeline.py
Line 122 in a4d8f7f
It seems
yawandpitchare reversed. Why would this be the case?