Meta Pseudo Labels | Papers With Code
paperswithcode.com › paper › meta-pseudo-labels8 code implementations in TensorFlow and PyTorch. We present Meta Pseudo Labels, a semi-supervised learning method that achieves a new state-of-the-art top-1 accuracy of 90.2% on ImageNet, which is 1.6% better than the existing state-of-the-art. Like Pseudo Labels, Meta Pseudo Labels has a teacher network to generate pseudo labels on unlabeled data to teach a student network. However, unlike ...
How to implement pseudo-labeling? - vision - PyTorch …
03.02.2020 · pseudo_labels = model(unlabeled_dataset) # predictions on unlabeled_dataset act as pseudo labels for unlabeled dataset loss.backward() optimizer.step() then, carry out training again and next time, our loss would be, …