├── LICENSE ├── README.md ├── assets ├── pixmix.png └── pixmix_code.png ├── calibration_tools.py ├── cifar.py ├── imagenet.py ├── pixmix_utils.py └── third_party ├── ResNeXt_DenseNet ├── LICENSE ├── METADATA ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ └── __init__.cpython-38.pyc └── models │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── __init__.cpython-38.pyc │ ├── densenet.cpython-37.pyc │ ├── densenet.cpython-38.pyc │ ├── resnext.cpython-37.pyc │ └── resnext.cpython-38.pyc │ ├── densenet.py │ └── resnext.py ├── WideResNet_pytorch ├── LICENSE ├── METADATA ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── __init__.cpython-38.pyc │ ├── wideresnet.cpython-37.pyc │ └── wideresnet.cpython-38.pyc └── wideresnet.py ├── __init__.py └── __pycache__ ├── __init__.cpython-37.pyc └── __init__.cpython-38.pyc /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyzoujm/pixmix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyzoujm/pixmix/HEAD/README.md -------------------------------------------------------------------------------- /assets/pixmix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyzoujm/pixmix/HEAD/assets/pixmix.png -------------------------------------------------------------------------------- /assets/pixmix_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyzoujm/pixmix/HEAD/assets/pixmix_code.png -------------------------------------------------------------------------------- /calibration_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyzoujm/pixmix/HEAD/calibration_tools.py -------------------------------------------------------------------------------- /cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyzoujm/pixmix/HEAD/cifar.py -------------------------------------------------------------------------------- /imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyzoujm/pixmix/HEAD/imagenet.py -------------------------------------------------------------------------------- /pixmix_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyzoujm/pixmix/HEAD/pixmix_utils.py -------------------------------------------------------------------------------- /third_party/ResNeXt_DenseNet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyzoujm/pixmix/HEAD/third_party/ResNeXt_DenseNet/LICENSE -------------------------------------------------------------------------------- /third_party/ResNeXt_DenseNet/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyzoujm/pixmix/HEAD/third_party/ResNeXt_DenseNet/METADATA -------------------------------------------------------------------------------- /third_party/ResNeXt_DenseNet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ResNeXt_DenseNet/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyzoujm/pixmix/HEAD/third_party/ResNeXt_DenseNet/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /third_party/ResNeXt_DenseNet/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyzoujm/pixmix/HEAD/third_party/ResNeXt_DenseNet/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /third_party/ResNeXt_DenseNet/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/ResNeXt_DenseNet/models/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyzoujm/pixmix/HEAD/third_party/ResNeXt_DenseNet/models/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /third_party/ResNeXt_DenseNet/models/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyzoujm/pixmix/HEAD/third_party/ResNeXt_DenseNet/models/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /third_party/ResNeXt_DenseNet/models/__pycache__/densenet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyzoujm/pixmix/HEAD/third_party/ResNeXt_DenseNet/models/__pycache__/densenet.cpython-37.pyc -------------------------------------------------------------------------------- /third_party/ResNeXt_DenseNet/models/__pycache__/densenet.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyzoujm/pixmix/HEAD/third_party/ResNeXt_DenseNet/models/__pycache__/densenet.cpython-38.pyc -------------------------------------------------------------------------------- /third_party/ResNeXt_DenseNet/models/__pycache__/resnext.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyzoujm/pixmix/HEAD/third_party/ResNeXt_DenseNet/models/__pycache__/resnext.cpython-37.pyc -------------------------------------------------------------------------------- /third_party/ResNeXt_DenseNet/models/__pycache__/resnext.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyzoujm/pixmix/HEAD/third_party/ResNeXt_DenseNet/models/__pycache__/resnext.cpython-38.pyc -------------------------------------------------------------------------------- /third_party/ResNeXt_DenseNet/models/densenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyzoujm/pixmix/HEAD/third_party/ResNeXt_DenseNet/models/densenet.py -------------------------------------------------------------------------------- /third_party/ResNeXt_DenseNet/models/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyzoujm/pixmix/HEAD/third_party/ResNeXt_DenseNet/models/resnext.py -------------------------------------------------------------------------------- /third_party/WideResNet_pytorch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyzoujm/pixmix/HEAD/third_party/WideResNet_pytorch/LICENSE -------------------------------------------------------------------------------- /third_party/WideResNet_pytorch/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyzoujm/pixmix/HEAD/third_party/WideResNet_pytorch/METADATA -------------------------------------------------------------------------------- /third_party/WideResNet_pytorch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/WideResNet_pytorch/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyzoujm/pixmix/HEAD/third_party/WideResNet_pytorch/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /third_party/WideResNet_pytorch/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyzoujm/pixmix/HEAD/third_party/WideResNet_pytorch/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /third_party/WideResNet_pytorch/__pycache__/wideresnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyzoujm/pixmix/HEAD/third_party/WideResNet_pytorch/__pycache__/wideresnet.cpython-37.pyc -------------------------------------------------------------------------------- /third_party/WideResNet_pytorch/__pycache__/wideresnet.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyzoujm/pixmix/HEAD/third_party/WideResNet_pytorch/__pycache__/wideresnet.cpython-38.pyc -------------------------------------------------------------------------------- /third_party/WideResNet_pytorch/wideresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyzoujm/pixmix/HEAD/third_party/WideResNet_pytorch/wideresnet.py -------------------------------------------------------------------------------- /third_party/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyzoujm/pixmix/HEAD/third_party/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /third_party/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyzoujm/pixmix/HEAD/third_party/__pycache__/__init__.cpython-38.pyc --------------------------------------------------------------------------------