TCL
TCL copied to clipboard
in_batch_g2l_loss
The line 249 in models
u_p = (temp_mask * u_p) + (10000. * (1-temp_mask))
may should be
u_p = (temp_mask * u_p) - (10000. * (1-temp_mask))
?