├── .idea ├── .gitignore ├── MEST.iml ├── encodings.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md ├── accuracy.py ├── delete.py ├── forgettable_visualize.py ├── main_sparse_train.py ├── main_sparse_train_w_data_efficient.py ├── models ├── resnet20_cifar.py ├── resnet32_cifar10_grasp.py └── vgg_grasp.py ├── pkl └── irr_0.6_MwE_final_unforget_15254.pkl ├── profiles ├── .DS_Store ├── resnet32_cifar │ ├── blk │ │ ├── resnet32_0.1.yaml │ │ ├── resnet32_0.2.yaml │ │ ├── resnet32_0.3.yaml │ │ ├── resnet32_0.4.yaml │ │ ├── resnet32_0.5.yaml │ │ ├── resnet32_0.6.yaml │ │ ├── resnet32_0.7.yaml │ │ ├── resnet32_0.8.yaml │ │ ├── resnet32_0.9.yaml │ │ ├── resnet32_0.95.yaml │ │ ├── resnet32_0.98.yaml │ │ └── resnet32_0.yaml │ ├── irr │ │ ├── resnet32_0.1.yaml │ │ ├── resnet32_0.2.yaml │ │ ├── resnet32_0.3.yaml │ │ ├── resnet32_0.4.yaml │ │ ├── resnet32_0.5.yaml │ │ ├── resnet32_0.6.yaml │ │ ├── resnet32_0.7.yaml │ │ ├── resnet32_0.8.yaml │ │ ├── resnet32_0.8_uneven.yaml │ │ ├── resnet32_0.9.yaml │ │ ├── resnet32_0.95.yaml │ │ ├── resnet32_0.98.yaml │ │ ├── resnet32_0.9_uneven.yaml │ │ └── resnet32_0.yaml │ └── pattern │ │ ├── resnet32_0.55.yaml │ │ ├── resnet32_0.6.yaml │ │ ├── resnet32_0.7.yaml │ │ ├── resnet32_0.8.yaml │ │ ├── resnet32_0.9.yaml │ │ ├── resnet32_0.95.yaml │ │ └── resnet32_0.98.yaml └── vgg19_cifar │ └── irr │ ├── vgg_0.1_with.yaml │ ├── vgg_0.2_with.yaml │ ├── vgg_0.3_with.yaml │ ├── vgg_0.4_with.yaml │ ├── vgg_0.5_with.yaml │ ├── vgg_0.6_with.yaml │ ├── vgg_0.7_with.yaml │ ├── vgg_0.8_with.yaml │ ├── vgg_0.9.yaml │ └── vgg_0.9_with.yaml ├── prune_utils ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── prune_main.cpython-36.pyc │ ├── retrain.cpython-36.pyc │ └── utils_pr.cpython-36.pyc ├── prune_main.py ├── retrain.py └── utils_pr.py ├── scripts ├── .DS_Store └── resnet32 │ ├── EM │ ├── run_mag_prune_blk_sp_EM.sh │ ├── run_mag_prune_irr_sp_EM.sh │ └── run_mag_prune_pattern_sp_EM.sh │ ├── EM_S │ ├── run_mag_prune_blk_sp_EM_S.sh │ ├── run_mag_prune_irr_sp_EM_S.sh │ └── run_mag_prune_pattern_sp_EM_S.sh │ └── data_efficient │ ├── EM_S_sp90_blk.sh │ ├── EM_S_sp90_irr.sh │ ├── EM_S_sp90_pat.sh │ ├── EM_sp90_blk.sh │ ├── EM_sp90_irr.sh │ └── EM_sp90_pat.sh └── testers.py /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/MEST.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/.idea/MEST.iml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/README.md -------------------------------------------------------------------------------- /accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/accuracy.py -------------------------------------------------------------------------------- /delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/delete.py -------------------------------------------------------------------------------- /forgettable_visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/forgettable_visualize.py -------------------------------------------------------------------------------- /main_sparse_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/main_sparse_train.py -------------------------------------------------------------------------------- /main_sparse_train_w_data_efficient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/main_sparse_train_w_data_efficient.py -------------------------------------------------------------------------------- /models/resnet20_cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/models/resnet20_cifar.py -------------------------------------------------------------------------------- /models/resnet32_cifar10_grasp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/models/resnet32_cifar10_grasp.py -------------------------------------------------------------------------------- /models/vgg_grasp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/models/vgg_grasp.py -------------------------------------------------------------------------------- /pkl/irr_0.6_MwE_final_unforget_15254.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/pkl/irr_0.6_MwE_final_unforget_15254.pkl -------------------------------------------------------------------------------- /profiles/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/.DS_Store -------------------------------------------------------------------------------- /profiles/resnet32_cifar/blk/resnet32_0.1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/blk/resnet32_0.1.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/blk/resnet32_0.2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/blk/resnet32_0.2.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/blk/resnet32_0.3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/blk/resnet32_0.3.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/blk/resnet32_0.4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/blk/resnet32_0.4.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/blk/resnet32_0.5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/blk/resnet32_0.5.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/blk/resnet32_0.6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/blk/resnet32_0.6.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/blk/resnet32_0.7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/blk/resnet32_0.7.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/blk/resnet32_0.8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/blk/resnet32_0.8.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/blk/resnet32_0.9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/blk/resnet32_0.9.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/blk/resnet32_0.95.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/blk/resnet32_0.95.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/blk/resnet32_0.98.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/blk/resnet32_0.98.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/blk/resnet32_0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/blk/resnet32_0.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/irr/resnet32_0.1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/irr/resnet32_0.1.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/irr/resnet32_0.2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/irr/resnet32_0.2.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/irr/resnet32_0.3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/irr/resnet32_0.3.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/irr/resnet32_0.4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/irr/resnet32_0.4.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/irr/resnet32_0.5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/irr/resnet32_0.5.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/irr/resnet32_0.6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/irr/resnet32_0.6.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/irr/resnet32_0.7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/irr/resnet32_0.7.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/irr/resnet32_0.8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/irr/resnet32_0.8.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/irr/resnet32_0.8_uneven.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/irr/resnet32_0.8_uneven.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/irr/resnet32_0.9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/irr/resnet32_0.9.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/irr/resnet32_0.95.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/irr/resnet32_0.95.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/irr/resnet32_0.98.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/irr/resnet32_0.98.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/irr/resnet32_0.9_uneven.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/irr/resnet32_0.9_uneven.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/irr/resnet32_0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/irr/resnet32_0.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/pattern/resnet32_0.55.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/pattern/resnet32_0.55.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/pattern/resnet32_0.6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/pattern/resnet32_0.6.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/pattern/resnet32_0.7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/pattern/resnet32_0.7.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/pattern/resnet32_0.8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/pattern/resnet32_0.8.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/pattern/resnet32_0.9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/pattern/resnet32_0.9.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/pattern/resnet32_0.95.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/pattern/resnet32_0.95.yaml -------------------------------------------------------------------------------- /profiles/resnet32_cifar/pattern/resnet32_0.98.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/resnet32_cifar/pattern/resnet32_0.98.yaml -------------------------------------------------------------------------------- /profiles/vgg19_cifar/irr/vgg_0.1_with.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/vgg19_cifar/irr/vgg_0.1_with.yaml -------------------------------------------------------------------------------- /profiles/vgg19_cifar/irr/vgg_0.2_with.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/vgg19_cifar/irr/vgg_0.2_with.yaml -------------------------------------------------------------------------------- /profiles/vgg19_cifar/irr/vgg_0.3_with.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/vgg19_cifar/irr/vgg_0.3_with.yaml -------------------------------------------------------------------------------- /profiles/vgg19_cifar/irr/vgg_0.4_with.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/vgg19_cifar/irr/vgg_0.4_with.yaml -------------------------------------------------------------------------------- /profiles/vgg19_cifar/irr/vgg_0.5_with.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/vgg19_cifar/irr/vgg_0.5_with.yaml -------------------------------------------------------------------------------- /profiles/vgg19_cifar/irr/vgg_0.6_with.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/vgg19_cifar/irr/vgg_0.6_with.yaml -------------------------------------------------------------------------------- /profiles/vgg19_cifar/irr/vgg_0.7_with.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/vgg19_cifar/irr/vgg_0.7_with.yaml -------------------------------------------------------------------------------- /profiles/vgg19_cifar/irr/vgg_0.8_with.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/vgg19_cifar/irr/vgg_0.8_with.yaml -------------------------------------------------------------------------------- /profiles/vgg19_cifar/irr/vgg_0.9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/vgg19_cifar/irr/vgg_0.9.yaml -------------------------------------------------------------------------------- /profiles/vgg19_cifar/irr/vgg_0.9_with.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/profiles/vgg19_cifar/irr/vgg_0.9_with.yaml -------------------------------------------------------------------------------- /prune_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/prune_utils/__init__.py -------------------------------------------------------------------------------- /prune_utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/prune_utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /prune_utils/__pycache__/prune_main.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/prune_utils/__pycache__/prune_main.cpython-36.pyc -------------------------------------------------------------------------------- /prune_utils/__pycache__/retrain.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/prune_utils/__pycache__/retrain.cpython-36.pyc -------------------------------------------------------------------------------- /prune_utils/__pycache__/utils_pr.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/prune_utils/__pycache__/utils_pr.cpython-36.pyc -------------------------------------------------------------------------------- /prune_utils/prune_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/prune_utils/prune_main.py -------------------------------------------------------------------------------- /prune_utils/retrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/prune_utils/retrain.py -------------------------------------------------------------------------------- /prune_utils/utils_pr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/prune_utils/utils_pr.py -------------------------------------------------------------------------------- /scripts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/scripts/.DS_Store -------------------------------------------------------------------------------- /scripts/resnet32/EM/run_mag_prune_blk_sp_EM.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/scripts/resnet32/EM/run_mag_prune_blk_sp_EM.sh -------------------------------------------------------------------------------- /scripts/resnet32/EM/run_mag_prune_irr_sp_EM.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/scripts/resnet32/EM/run_mag_prune_irr_sp_EM.sh -------------------------------------------------------------------------------- /scripts/resnet32/EM/run_mag_prune_pattern_sp_EM.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/scripts/resnet32/EM/run_mag_prune_pattern_sp_EM.sh -------------------------------------------------------------------------------- /scripts/resnet32/EM_S/run_mag_prune_blk_sp_EM_S.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/scripts/resnet32/EM_S/run_mag_prune_blk_sp_EM_S.sh -------------------------------------------------------------------------------- /scripts/resnet32/EM_S/run_mag_prune_irr_sp_EM_S.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/scripts/resnet32/EM_S/run_mag_prune_irr_sp_EM_S.sh -------------------------------------------------------------------------------- /scripts/resnet32/EM_S/run_mag_prune_pattern_sp_EM_S.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/scripts/resnet32/EM_S/run_mag_prune_pattern_sp_EM_S.sh -------------------------------------------------------------------------------- /scripts/resnet32/data_efficient/EM_S_sp90_blk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/scripts/resnet32/data_efficient/EM_S_sp90_blk.sh -------------------------------------------------------------------------------- /scripts/resnet32/data_efficient/EM_S_sp90_irr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/scripts/resnet32/data_efficient/EM_S_sp90_irr.sh -------------------------------------------------------------------------------- /scripts/resnet32/data_efficient/EM_S_sp90_pat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/scripts/resnet32/data_efficient/EM_S_sp90_pat.sh -------------------------------------------------------------------------------- /scripts/resnet32/data_efficient/EM_sp90_blk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/scripts/resnet32/data_efficient/EM_sp90_blk.sh -------------------------------------------------------------------------------- /scripts/resnet32/data_efficient/EM_sp90_irr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/scripts/resnet32/data_efficient/EM_sp90_irr.sh -------------------------------------------------------------------------------- /scripts/resnet32/data_efficient/EM_sp90_pat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/scripts/resnet32/data_efficient/EM_sp90_pat.sh -------------------------------------------------------------------------------- /testers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boone891214/MEST/HEAD/testers.py --------------------------------------------------------------------------------