Invalid line in transformer.py
terateil opened this issue · 2 comments
terateil commented
Hello, I guess I found small error in the code. In line 218,
I get error that there is no such argument object_loss_wt
, while training the ET model.
In the config file
teach_tatc/src/teach/modeling/models/ET/configs.py
Lines 55 to 56 in 5c8194a
So I guess the object_loss_wt
in line 218 should be replaced with action_aux_loss_wt
.
Thanks!
aliang8 commented
Yes you're right, line 218 should be losses["object"] = object_loss * self.args.action_aux_loss_wt
.
terateil commented
Thanks for your reply!