You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have this issue in function embedding_rep_loss, the distance_matrix size is 1818, the trans_matrix size is 1717,
when doing :
" rep_loss = torch.sum(torch.tensor(trans_matrix).cuda() * distance_matrix) "
this error occured
The text was updated successfully, but these errors were encountered:
This issue is due to the use of "args.embedding_emd = True"
In "emd_task_distill.py" +402 , use embedding_rep_loss function that make the tensor shape doesn't match
So make the args.embedding_emd = False can fix this issue
I have this issue in function embedding_rep_loss, the distance_matrix size is 1818, the trans_matrix size is 1717,
when doing :
" rep_loss = torch.sum(torch.tensor(trans_matrix).cuda() * distance_matrix) "
this error occured
The text was updated successfully, but these errors were encountered: