ChengShen

Results 12 comments of ChengShen

`x_reshaped = x.contiguous().view(1, b * c, *x.size()[2:])` I think it is the answer why they used BN function.

Hi! I noticed that your code feeds the model identical sequences for input and output. This encourages the network to memorize the identity mapping and overfit. During evaluation, do you...