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
the code :
#converting target labels to soft labels
for data in train_loader:
input, label = data[0].to(device),data[1].to(device)
softlabel = F.log_softmax(modelF(input),dim=1)
data[1] = softlabel
it seem does not convert target labels to soft labels , the label doesn't change in the code that follows
The text was updated successfully, but these errors were encountered:
the code :
#converting target labels to soft labels
for data in train_loader:
input, label = data[0].to(device),data[1].to(device)
softlabel = F.log_softmax(modelF(input),dim=1)
data[1] = softlabel
it seem does not convert target labels to soft labels , the label doesn't change in the code that follows
The text was updated successfully, but these errors were encountered: