├── .gitignore ├── LICENSE ├── README.md ├── dataset ├── cifar.py └── randaugment.py ├── models ├── ema.py ├── resnext.py └── wideresnet.py ├── train.py └── utils ├── __init__.py └── misc.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekmodel/FixMatch-pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekmodel/FixMatch-pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekmodel/FixMatch-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /dataset/cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekmodel/FixMatch-pytorch/HEAD/dataset/cifar.py -------------------------------------------------------------------------------- /dataset/randaugment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekmodel/FixMatch-pytorch/HEAD/dataset/randaugment.py -------------------------------------------------------------------------------- /models/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekmodel/FixMatch-pytorch/HEAD/models/ema.py -------------------------------------------------------------------------------- /models/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekmodel/FixMatch-pytorch/HEAD/models/resnext.py -------------------------------------------------------------------------------- /models/wideresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekmodel/FixMatch-pytorch/HEAD/models/wideresnet.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekmodel/FixMatch-pytorch/HEAD/train.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | from .misc import * 2 | -------------------------------------------------------------------------------- /utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kekmodel/FixMatch-pytorch/HEAD/utils/misc.py --------------------------------------------------------------------------------