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
I was going through the code base and noticed some potentially unintended behaviour during the training of the MOSEI models. Please see the following lines of code . The if statement sets the set_name "trn" to "train" and then further down in the __init__ method and the __getitem__ method the if conditions check for whether or not the set_name is "trn" and not "train" resulting in the validation and tests blocks being run every time.
The text was updated successfully, but these errors were encountered:
Hi,
I was going through the code base and noticed some potentially unintended behaviour during the training of the MOSEI models. Please see the following lines of code . The if statement sets the
set_name
"trn" to "train" and then further down in the__init__
method and the__getitem__
method the if conditions check for whether or not theset_name
is "trn" and not "train" resulting in the validation and tests blocks being run every time.The text was updated successfully, but these errors were encountered: