Closed jungwon-choi closed 4 years ago
In the Classifier_Module class, the position of return of forward function is something strange. Is it intended or just the wrong tab?
def forward(self, x): out = self.conv2d_list[0](x) for i in range(len(self.conv2d_list) - 1): out += self.conv2d_list[i + 1](x) return out
Please check this issue.
In the Classifier_Module class, the position of return of forward function is something strange. Is it intended or just the wrong tab?