├── README.md ├── models ├── __init__.py ├── __pycache__ │ ├── Multiresnet.cpython-36.pyc │ ├── __init__.cpython-36.pyc │ ├── data_loader.cpython-36.pyc │ ├── densenet.cpython-36.pyc │ ├── densenet_one.cpython-36.pyc │ ├── mobilenet.cpython-36.pyc │ ├── resnet.cpython-36.pyc │ ├── resnet_GL.cpython-36.pyc │ ├── resnet_GL1.cpython-36.pyc │ ├── resnet_one.cpython-36.pyc │ ├── resnet_self.cpython-36.pyc │ ├── resnext.cpython-36.pyc │ ├── shufflenetV2.cpython-36.pyc │ ├── vgg.cpython-36.pyc │ ├── vgg11.cpython-36.pyc │ ├── vgg_GL.cpython-36.pyc │ ├── vgg_GL1.cpython-36.pyc │ └── vgg_one.cpython-36.pyc ├── data_loader.py ├── model_cifar │ ├── DML.py │ ├── MultiNet.py │ ├── __init__.py │ ├── __pycache__ │ │ ├── DML.cpython-36.pyc │ │ ├── MultiNet.cpython-36.pyc │ │ ├── __init__.cpython-36.pyc │ │ ├── densenet.cpython-36.pyc │ │ ├── resnet.cpython-36.pyc │ │ ├── resnet_GL.cpython-36.pyc │ │ ├── shufflenetV2.cpython-36.pyc │ │ ├── vgg.cpython-36.pyc │ │ └── vgg_GL.cpython-36.pyc │ ├── densenet.py │ ├── densenet_GL.py │ ├── densenet_one.py │ ├── resnet.py │ ├── resnet_GL.py │ ├── resnet_one.py │ ├── vgg.py │ ├── vgg_GL.py │ └── vgg_one.py └── model_imagenet │ ├── DML.py │ ├── MultiNet.py │ ├── __init__.py │ ├── __pycache__ │ ├── MultiNet.cpython-36.pyc │ ├── Multiresnet.cpython-36.pyc │ ├── __init__.cpython-36.pyc │ ├── data_loader.cpython-36.pyc │ ├── densenet.cpython-36.pyc │ ├── densenet_one.cpython-36.pyc │ ├── mobilenet.cpython-36.pyc │ ├── resnet.cpython-36.pyc │ ├── resnet_GL.cpython-36.pyc │ ├── resnet_GL1.cpython-36.pyc │ ├── resnet_one.cpython-36.pyc │ ├── resnet_self.cpython-36.pyc │ ├── resnext.cpython-36.pyc │ ├── shufflenetV2.cpython-36.pyc │ ├── vgg.cpython-36.pyc │ ├── vgg11.cpython-36.pyc │ ├── vgg_GL.cpython-36.pyc │ ├── vgg_GL1.cpython-36.pyc │ └── vgg_one.cpython-36.pyc │ ├── densenet.py │ ├── resnet.py │ └── resnet_GL.py ├── requirements.txt ├── train.py ├── train_DML.py ├── train_GL.py ├── train_kd.py ├── train_one.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/README.md -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/__pycache__/Multiresnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/__pycache__/Multiresnet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/data_loader.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/__pycache__/data_loader.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/densenet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/__pycache__/densenet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/densenet_one.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/__pycache__/densenet_one.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/mobilenet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/__pycache__/mobilenet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/resnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/__pycache__/resnet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/resnet_GL.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/__pycache__/resnet_GL.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/resnet_GL1.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/__pycache__/resnet_GL1.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/resnet_one.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/__pycache__/resnet_one.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/resnet_self.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/__pycache__/resnet_self.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/resnext.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/__pycache__/resnext.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/shufflenetV2.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/__pycache__/shufflenetV2.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/vgg.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/__pycache__/vgg.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/vgg11.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/__pycache__/vgg11.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/vgg_GL.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/__pycache__/vgg_GL.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/vgg_GL1.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/__pycache__/vgg_GL1.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/vgg_one.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/__pycache__/vgg_one.cpython-36.pyc -------------------------------------------------------------------------------- /models/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/data_loader.py -------------------------------------------------------------------------------- /models/model_cifar/DML.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_cifar/DML.py -------------------------------------------------------------------------------- /models/model_cifar/MultiNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_cifar/MultiNet.py -------------------------------------------------------------------------------- /models/model_cifar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_cifar/__init__.py -------------------------------------------------------------------------------- /models/model_cifar/__pycache__/DML.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_cifar/__pycache__/DML.cpython-36.pyc -------------------------------------------------------------------------------- /models/model_cifar/__pycache__/MultiNet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_cifar/__pycache__/MultiNet.cpython-36.pyc -------------------------------------------------------------------------------- /models/model_cifar/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_cifar/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /models/model_cifar/__pycache__/densenet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_cifar/__pycache__/densenet.cpython-36.pyc -------------------------------------------------------------------------------- /models/model_cifar/__pycache__/resnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_cifar/__pycache__/resnet.cpython-36.pyc -------------------------------------------------------------------------------- /models/model_cifar/__pycache__/resnet_GL.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_cifar/__pycache__/resnet_GL.cpython-36.pyc -------------------------------------------------------------------------------- /models/model_cifar/__pycache__/shufflenetV2.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_cifar/__pycache__/shufflenetV2.cpython-36.pyc -------------------------------------------------------------------------------- /models/model_cifar/__pycache__/vgg.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_cifar/__pycache__/vgg.cpython-36.pyc -------------------------------------------------------------------------------- /models/model_cifar/__pycache__/vgg_GL.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_cifar/__pycache__/vgg_GL.cpython-36.pyc -------------------------------------------------------------------------------- /models/model_cifar/densenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_cifar/densenet.py -------------------------------------------------------------------------------- /models/model_cifar/densenet_GL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_cifar/densenet_GL.py -------------------------------------------------------------------------------- /models/model_cifar/densenet_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_cifar/densenet_one.py -------------------------------------------------------------------------------- /models/model_cifar/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_cifar/resnet.py -------------------------------------------------------------------------------- /models/model_cifar/resnet_GL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_cifar/resnet_GL.py -------------------------------------------------------------------------------- /models/model_cifar/resnet_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_cifar/resnet_one.py -------------------------------------------------------------------------------- /models/model_cifar/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_cifar/vgg.py -------------------------------------------------------------------------------- /models/model_cifar/vgg_GL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_cifar/vgg_GL.py -------------------------------------------------------------------------------- /models/model_cifar/vgg_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_cifar/vgg_one.py -------------------------------------------------------------------------------- /models/model_imagenet/DML.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_imagenet/DML.py -------------------------------------------------------------------------------- /models/model_imagenet/MultiNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_imagenet/MultiNet.py -------------------------------------------------------------------------------- /models/model_imagenet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_imagenet/__init__.py -------------------------------------------------------------------------------- /models/model_imagenet/__pycache__/MultiNet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_imagenet/__pycache__/MultiNet.cpython-36.pyc -------------------------------------------------------------------------------- /models/model_imagenet/__pycache__/Multiresnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_imagenet/__pycache__/Multiresnet.cpython-36.pyc -------------------------------------------------------------------------------- /models/model_imagenet/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_imagenet/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /models/model_imagenet/__pycache__/data_loader.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_imagenet/__pycache__/data_loader.cpython-36.pyc -------------------------------------------------------------------------------- /models/model_imagenet/__pycache__/densenet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_imagenet/__pycache__/densenet.cpython-36.pyc -------------------------------------------------------------------------------- /models/model_imagenet/__pycache__/densenet_one.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_imagenet/__pycache__/densenet_one.cpython-36.pyc -------------------------------------------------------------------------------- /models/model_imagenet/__pycache__/mobilenet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_imagenet/__pycache__/mobilenet.cpython-36.pyc -------------------------------------------------------------------------------- /models/model_imagenet/__pycache__/resnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_imagenet/__pycache__/resnet.cpython-36.pyc -------------------------------------------------------------------------------- /models/model_imagenet/__pycache__/resnet_GL.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_imagenet/__pycache__/resnet_GL.cpython-36.pyc -------------------------------------------------------------------------------- /models/model_imagenet/__pycache__/resnet_GL1.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_imagenet/__pycache__/resnet_GL1.cpython-36.pyc -------------------------------------------------------------------------------- /models/model_imagenet/__pycache__/resnet_one.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_imagenet/__pycache__/resnet_one.cpython-36.pyc -------------------------------------------------------------------------------- /models/model_imagenet/__pycache__/resnet_self.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_imagenet/__pycache__/resnet_self.cpython-36.pyc -------------------------------------------------------------------------------- /models/model_imagenet/__pycache__/resnext.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_imagenet/__pycache__/resnext.cpython-36.pyc -------------------------------------------------------------------------------- /models/model_imagenet/__pycache__/shufflenetV2.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_imagenet/__pycache__/shufflenetV2.cpython-36.pyc -------------------------------------------------------------------------------- /models/model_imagenet/__pycache__/vgg.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_imagenet/__pycache__/vgg.cpython-36.pyc -------------------------------------------------------------------------------- /models/model_imagenet/__pycache__/vgg11.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_imagenet/__pycache__/vgg11.cpython-36.pyc -------------------------------------------------------------------------------- /models/model_imagenet/__pycache__/vgg_GL.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_imagenet/__pycache__/vgg_GL.cpython-36.pyc -------------------------------------------------------------------------------- /models/model_imagenet/__pycache__/vgg_GL1.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_imagenet/__pycache__/vgg_GL1.cpython-36.pyc -------------------------------------------------------------------------------- /models/model_imagenet/__pycache__/vgg_one.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_imagenet/__pycache__/vgg_one.cpython-36.pyc -------------------------------------------------------------------------------- /models/model_imagenet/densenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_imagenet/densenet.py -------------------------------------------------------------------------------- /models/model_imagenet/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_imagenet/resnet.py -------------------------------------------------------------------------------- /models/model_imagenet/resnet_GL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/models/model_imagenet/resnet_GL.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/requirements.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/train.py -------------------------------------------------------------------------------- /train_DML.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/train_DML.py -------------------------------------------------------------------------------- /train_GL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/train_GL.py -------------------------------------------------------------------------------- /train_kd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/train_kd.py -------------------------------------------------------------------------------- /train_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/train_one.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DefangChen/OKDDip/HEAD/utils.py --------------------------------------------------------------------------------