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
As stated above, in the last part of the network you set conv10's num_outputs is 12 and then do depth_to_space(conv10, 2) to make the channel of out to 3.
Now, I want to know why you didn't set conv10's num_outputs 3 directly.
The text was updated successfully, but these errors were encountered:
I think the reason is that conv10's output size is H/2*W/2 for each channel, and in order to get an H*W-size 3-channel output RGB image, you need 3*(H*W)/(H/2*W/2) = 12 channels output.
As stated above, in the last part of the network you set conv10's num_outputs is 12 and then do depth_to_space(conv10, 2) to make the channel of out to 3.
Now, I want to know why you didn't set conv10's num_outputs 3 directly.
The text was updated successfully, but these errors were encountered: