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
why in adapt.py line 91 label_tgt = make_variable(torch.ones(feat_tgt.size(0)).long())? I think label_tgt = make_variable(torch.zeros(feat_tgt.size(0)).long())
#28
cause in line 63 label_tgt = make_variable(torch.zeros(feat_tgt.size(0)).long())
why in line 91 label_tgt changes to torch.ones(feat_tgt.size(0)).long() ?
In my view, the target encoder aims to map the target features into the source domain so that we can use the pre-trained source classifier to classify them. Therefore, we would like to make the target label after discriminating close to the source label that is one.
No description provided.
The text was updated successfully, but these errors were encountered: