-
Notifications
You must be signed in to change notification settings - Fork 130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unlabelled batch size #39
Comments
Same question. |
In Sec. 3.1 of the paper, ''For each u in the batch of unlabeled data U, we generate K augmentations.'' |
Thank you,another question is that in the code "inputs_u" and "inputs_u2" are from the different batch ? Can I change "(inputs_u, inputs_u2), _ = unlabeled_train_iter.next()" into "inputs_u = unlabeled_train_iter.next() inputs_u2 = unlabeled_train_iter.next()" ? |
I use another dataset. |
They are from the same batch but with different augmentations. |
According to the paper, there's a set of labelled and unlabelled datapoints that are mixed. In the code nevertheless there are two unlabelled sets, u1 and u2. Both of them are added to the mixed set. So my question is, why are there two such sets?
The text was updated successfully, but these errors were encountered: