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.  But you use...