Haohan Guo

Results 2 issues of Haohan Guo

def forward(self, input_): # FFN Network x = input_.transpose(1, 2) x = self.w_2(t.relu(self.w_1(x))) x = x.transpose(1, 2) # residual connection x = x + input_ # dropout x = self.dropout(x)...

model structure

Hi, I am curious about the hinge loss defined in your paper. It seems that your implementation is different. This is the definition in your paper. ![image](https://user-images.githubusercontent.com/28179486/92690223-35587680-f373-11ea-8bd9-6d238577be22.png) But you use...