├── .gitignore ├── DatasetCondensation ├── CL_DM.py ├── LICENSE ├── docs │ ├── 10ipc.png │ ├── 10ipc_DSA.png │ ├── 1ipc.png │ ├── DM_large_settings.png │ ├── DSA.png │ ├── method.png │ ├── method_DM.png │ ├── method_DSA.png │ └── rendering_DSA.png ├── main.py ├── main_DM.py ├── networks.py ├── readme.md ├── requirements.txt └── utils.py ├── LICENSE ├── README.md ├── drop_utils ├── __init__.py ├── drop.py └── resource │ ├── CIFAR100_LossConverge.json │ ├── CIFAR100_LossInit.json │ ├── CIFAR100_MonteCarlo.json │ ├── CIFAR10_LossConverge.json │ ├── CIFAR10_LossInit.json │ ├── CIFAR10_MonteCarlo.json │ ├── MNIST_LossConverge.json │ ├── MNIST_MonteCarlo.json │ ├── SVHN_LossConverge.json │ ├── SVHN_MonteCarlo.json │ └── TinyImageNet_LossConverge.json └── method.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/.gitignore -------------------------------------------------------------------------------- /DatasetCondensation/CL_DM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/DatasetCondensation/CL_DM.py -------------------------------------------------------------------------------- /DatasetCondensation/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/DatasetCondensation/LICENSE -------------------------------------------------------------------------------- /DatasetCondensation/docs/10ipc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/DatasetCondensation/docs/10ipc.png -------------------------------------------------------------------------------- /DatasetCondensation/docs/10ipc_DSA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/DatasetCondensation/docs/10ipc_DSA.png -------------------------------------------------------------------------------- /DatasetCondensation/docs/1ipc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/DatasetCondensation/docs/1ipc.png -------------------------------------------------------------------------------- /DatasetCondensation/docs/DM_large_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/DatasetCondensation/docs/DM_large_settings.png -------------------------------------------------------------------------------- /DatasetCondensation/docs/DSA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/DatasetCondensation/docs/DSA.png -------------------------------------------------------------------------------- /DatasetCondensation/docs/method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/DatasetCondensation/docs/method.png -------------------------------------------------------------------------------- /DatasetCondensation/docs/method_DM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/DatasetCondensation/docs/method_DM.png -------------------------------------------------------------------------------- /DatasetCondensation/docs/method_DSA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/DatasetCondensation/docs/method_DSA.png -------------------------------------------------------------------------------- /DatasetCondensation/docs/rendering_DSA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/DatasetCondensation/docs/rendering_DSA.png -------------------------------------------------------------------------------- /DatasetCondensation/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/DatasetCondensation/main.py -------------------------------------------------------------------------------- /DatasetCondensation/main_DM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/DatasetCondensation/main_DM.py -------------------------------------------------------------------------------- /DatasetCondensation/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/DatasetCondensation/networks.py -------------------------------------------------------------------------------- /DatasetCondensation/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/DatasetCondensation/readme.md -------------------------------------------------------------------------------- /DatasetCondensation/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/DatasetCondensation/requirements.txt -------------------------------------------------------------------------------- /DatasetCondensation/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/DatasetCondensation/utils.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/README.md -------------------------------------------------------------------------------- /drop_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/drop_utils/__init__.py -------------------------------------------------------------------------------- /drop_utils/drop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/drop_utils/drop.py -------------------------------------------------------------------------------- /drop_utils/resource/CIFAR100_LossConverge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/drop_utils/resource/CIFAR100_LossConverge.json -------------------------------------------------------------------------------- /drop_utils/resource/CIFAR100_LossInit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/drop_utils/resource/CIFAR100_LossInit.json -------------------------------------------------------------------------------- /drop_utils/resource/CIFAR100_MonteCarlo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/drop_utils/resource/CIFAR100_MonteCarlo.json -------------------------------------------------------------------------------- /drop_utils/resource/CIFAR10_LossConverge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/drop_utils/resource/CIFAR10_LossConverge.json -------------------------------------------------------------------------------- /drop_utils/resource/CIFAR10_LossInit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/drop_utils/resource/CIFAR10_LossInit.json -------------------------------------------------------------------------------- /drop_utils/resource/CIFAR10_MonteCarlo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/drop_utils/resource/CIFAR10_MonteCarlo.json -------------------------------------------------------------------------------- /drop_utils/resource/MNIST_LossConverge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/drop_utils/resource/MNIST_LossConverge.json -------------------------------------------------------------------------------- /drop_utils/resource/MNIST_MonteCarlo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/drop_utils/resource/MNIST_MonteCarlo.json -------------------------------------------------------------------------------- /drop_utils/resource/SVHN_LossConverge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/drop_utils/resource/SVHN_LossConverge.json -------------------------------------------------------------------------------- /drop_utils/resource/SVHN_MonteCarlo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/drop_utils/resource/SVHN_MonteCarlo.json -------------------------------------------------------------------------------- /drop_utils/resource/TinyImageNet_LossConverge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/drop_utils/resource/TinyImageNet_LossConverge.json -------------------------------------------------------------------------------- /method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silicx/GoldFromOres-BiLP/HEAD/method.png --------------------------------------------------------------------------------