Open AuroraYXL opened 2 years ago
H_flow_f = (self.basis weight_f).sum(1).reshape(batch_size, 2, h_patch, w_patch) -----> H_flow_f = (self.basis.to(weight_f.device) weight_f).sum(1).reshape(batch_size, 2, h_patch, w_patch) H_flow_b = (self.basis weight_b).sum(1).reshape(batch_size, 2, h_patch, w_patch) -----> H_flow_b = (self.basis.to(weight_b.device) weight_b).sum(1).reshape(batch_size, 2, h_patch, w_patch)
can fix 1st bug.
How to solve the second problem? Without changing any code and parameters, my loss will not decline after the first 5k iterations (single GPU operation).p1 is feature loss,p2 is total loss
Hi! @AuroraYXL. I am sorry for disturbing you. I have the same problem as you. My loss only decreased in the first 5K iterations, and then there was almost no change. Have you solved this problem? Look forward to your reply!
I have two questions: