You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for the great codebase!
I run into an error in line 218 of trainer/trainer.py during running train_bls.py.
line 218: poses[baseline] = BASELINES[baseline](x_gt, y_gt, 1) TypeError: <lambda>() takes 2 positional arguments but 3 were given
Line 218 should be as below to avoid the error. poses[baseline] = BASELINES[baseline](x_gt, y_gt)
The change is too small, so I didn't do a pull request.
I would appreciate it if you check this!
The text was updated successfully, but these errors were encountered:
Hi,
Thanks for the great codebase!
I run into an error in line 218 of
trainer/trainer.py
during runningtrain_bls.py.
line 218:
poses[baseline] = BASELINES[baseline](x_gt, y_gt, 1)
TypeError: <lambda>() takes 2 positional arguments but 3 were given
Line 218 should be as below to avoid the error.
poses[baseline] = BASELINES[baseline](x_gt, y_gt)
The change is too small, so I didn't do a pull request.
I would appreciate it if you check this!
The text was updated successfully, but these errors were encountered: