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
Hi, I am wondering why you use trainloader_iter and trainloader_gt_iter at the same time during your training process, since they are both refer to the labeled dataset. During the D training, only labels_gt is used from trainloader_gt_iter, what is the difference if using labels from trainloader_gt_iter?
The text was updated successfully, but these errors were encountered:
It's simply for generating two sampling sequences for the entire dataset. one for the "real" branch and one for the fake "branch". You can also sample twice from the same data loader. We only do this for better readability since data loader in this project does not cost much efficiency.
Hi, I am wondering why you use trainloader_iter and trainloader_gt_iter at the same time during your training process, since they are both refer to the labeled dataset. During the D training, only labels_gt is used from trainloader_gt_iter, what is the difference if using labels from trainloader_gt_iter?
The text was updated successfully, but these errors were encountered: