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 was 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
testposeforrgb_predictedwe should compare totestimgnottarget_img, which is just a random training sample.