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 encountered some issues while attempting to reproduce the effects of DOVER++ on the DEVIDE17k dataset. I have detailed the problems below, along with the corresponding code snippets and error messages.
Issue 1: AttributeError: 'list' object has no attribute 'float'
Error message:
Linear Epoch 0:
Training in epoch 0: 0%| | 0/228 [00:19<?, ?it/s]
y = data["gt_label"].float().detach().to(device).unsqueeze(-1)
AttributeError: 'list' object has no attribute 'float'
It appears that there might be an issue with the dataset class. Could this be due to an undisclosed dataset class causing these errors? Alternatively, what steps should I follow to train the model and achieve the effects of the public weights? Any guidance would be greatly appreciated.
The text was updated successfully, but these errors were encountered:
I encountered some issues while attempting to reproduce the effects of DOVER++ on the DEVIDE17k dataset. I have detailed the problems below, along with the corresponding code snippets and error messages.
Issue 1: AttributeError: 'list' object has no attribute 'float'
Error message:
The error occurs at the following line of code:
DOVER/training_with_divide.py
Line 114 in 411c62b
Issue 2: KeyError: 'gt_label_a'
Error message:
The error occurs at the following line of code:
DOVER/training_with_divide.py
Line 146 in 411c62b
It appears that there might be an issue with the dataset class. Could this be due to an undisclosed dataset class causing these errors? Alternatively, what steps should I follow to train the model and achieve the effects of the public weights? Any guidance would be greatly appreciated.
The text was updated successfully, but these errors were encountered: