# FixMatch-pytorch **Repository Path**: linkchainiii/FixMatch-pytorch ## Basic Information - **Project Name**: FixMatch-pytorch - **Description**: Cifar的弱监督算法 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-05-27 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # FixMatch This is an unofficial PyTorch implementation of [FixMatch: Simplifying Semi-Supervised Learning with Consistency and Confidence](https://arxiv.org/abs/2001.07685). The official Tensorflow implementation is [here](https://github.com/google-research/fixmatch). This code is only available in FixMatch (RandAugment). Now only experiments on CIFAR-10 and CIFAR-100 are available. ## Requirements - Python 3.6+ - PyTorch 1.4 - torchvision 0.5 - tensorboard - tqdm - numpy - apex (optional) ## Usage ### Train Train the model by 4000 labeled data of CIFAR-10 dataset: ``` python train.py --dataset cifar10 --num-labeled 4000 --arch wideresnet --batch-size 64 --lr 0.03 --out cifar10@4000 ``` Train the model by 10000 labeled data of CIFAR-100 dataset by using DistributedDataParallel: ``` python -m torch.distributed.launch --nproc_per_node 4 ./train.py --dataset cifar100 --num-labeled 10000 --arch wideresnet --batch-size 16 --lr 0.03 --out cifar100@10000 ``` ### Monitoring training progress ``` tensorboard --logdir= ``` ## Results (Accuracy) ### CIFAR10 | #Labels | 40 | 250 | 4000 | |:---|:---:|:---:|:---:| |Paper (RA) | 86.19 ± 3.37 | 94.93 ± 0.65 | 95.74 ± 0.05 | |This code | - | - | 94.72 | ### CIFAR100 | #Labels | 400 | 2500 | 10000 | |:---|:---:|:---:|:---:| |Paper (RA) | 51.15 ± 1.75 | 71.71 ± 0.11 | 77.40 ± 0.12 | |This code | - | - | - | \* Results of this code were evaluated on 1 run. ## References - Unofficial PyTorch implementation of MixMatch: A Holistic Approach to Semi-Supervised Learning (https://github.com/YU1ut/MixMatch-pytorch) ``` @article{sohn2020fixmatch, title={FixMatch: Simplifying Semi-Supervised Learning with Consistency and Confidence}, author={Kihyuk Sohn and David Berthelot and Chun-Liang Li and Zizhao Zhang and Nicholas Carlini and Ekin D. Cubuk and Alex Kurakin and Han Zhang and Colin Raffel}, journal={arXiv preprint arXiv:2001.07685}, year={2020}, } ```