Skip to content

Commit 9262989

Browse files
committed
Update!
1 parent 36a1779 commit 9262989

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dataset/cifar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def x_u_split(args, labels, expand_labels=True):
8888
label_per_class = args.num_labeled // args.num_classes
8989
labels = np.array(labels)
9090
labeled_idx = []
91-
# unlabeled data: all data
91+
# unlabeled data: all data (https://github.com/kekmodel/FixMatch-pytorch/issues/10)
9292
unlabeled_idx = np.array(range(len(labels)))
9393
for i in range(args.num_classes):
9494
idx = np.where(labels == i)[0]

0 commit comments

Comments
 (0)