gitextract_96mbtddl/ ├── LICENSE.md ├── README.md ├── deepcore/ │ ├── __init__.py │ ├── datasets/ │ │ ├── __init__.py │ │ ├── cifar10.py │ │ ├── cifar100.py │ │ ├── fashionmnist.py │ │ ├── imagenet.py │ │ ├── mnist.py │ │ ├── qmnist.py │ │ ├── svhn.py │ │ └── tinyimagenet.py │ ├── methods/ │ │ ├── __init__.py │ │ ├── cal.py │ │ ├── contextualdiversity.py │ │ ├── coresetmethod.py │ │ ├── craig.py │ │ ├── deepfool.py │ │ ├── earlytrain.py │ │ ├── forgetting.py │ │ ├── full.py │ │ ├── glister.py │ │ ├── gradmatch.py │ │ ├── grand.py │ │ ├── herding.py │ │ ├── kcentergreedy.py │ │ ├── methods_utils/ │ │ │ ├── __init__.py │ │ │ ├── cossim.py │ │ │ ├── euclidean.py │ │ │ ├── submodular_function.py │ │ │ └── submodular_optimizer.py │ │ ├── submodular.py │ │ ├── uncertainty.py │ │ └── uniform.py │ └── nets/ │ ├── __init__.py │ ├── alexnet.py │ ├── inceptionv3.py │ ├── lenet.py │ ├── mlp.py │ ├── mobilenetv3.py │ ├── nets_utils/ │ │ ├── __init__.py │ │ ├── parallel.py │ │ └── recorder.py │ ├── resnet.py │ ├── vgg.py │ └── wideresnet.py ├── main.py ├── requirements.txt └── utils.py