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
When data goes trough PCN network, it comes out the error 'Out of Memory'. And this error is located at class 'global_network', 'out = out.repeat(1, 1, int(self.image_size / n), int(self.image_size / n))' in PCN.py. Do you mean convert the feature with size [1, 512, 256, 256] to a feature [1, 512, 32, 32] in 'global512' block? Why don't you use upsampling method?
I changed the 'global_network' in PCN.py to let PCN network work and counted the total 'd_loss' and 'g_loss' for each epoch. But 'd_loss' didn't change since iteration 16 and 'g_loss' changed very very tiny. Any idea to fix this problem?
When data goes trough PCN network, it comes out the error 'Out of Memory'. And this error is located at class 'global_network', 'out = out.repeat(1, 1, int(self.image_size / n), int(self.image_size / n))' in PCN.py. Do you mean convert the feature with size [1, 512, 256, 256] to a feature [1, 512, 32, 32] in 'global512' block? Why don't you use upsampling method?
I changed the 'global_network' in PCN.py to let PCN network work and counted the total 'd_loss' and 'g_loss' for each epoch. But 'd_loss' didn't change since iteration 16 and 'g_loss' changed very very tiny. Any idea to fix this problem?