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
{{ message }}
This repository has been archived by the owner on Jul 30, 2024. It is now read-only.
It looks like when evaluating the loss in the last cell of the colab, the code uses
loss = torch.nn.functional.mse_loss(rgb_predicted, target_img)
But believe this should actually be
loss = torch.nn.functional.mse_loss(rgb_predicted, testimg)
Since we use
testpose
forrgb_predicted
we should compare totestimg
nottarget_img
, which is just a random training sample.The text was updated successfully, but these errors were encountered: