├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── learnT_order.py ├── loss-based-cscore.py ├── main_w_test.py ├── main_wo_test.py ├── orders └── README.md ├── requirements.txt ├── third_party ├── README.md ├── __init__.py ├── data │ ├── LICENSE │ ├── __init__.py │ ├── _utils │ │ ├── __init__.py │ │ ├── collate.py │ │ ├── fetch.py │ │ ├── pin_memory.py │ │ ├── signal_handling.py │ │ └── worker.py │ ├── dataloader.py │ ├── dataset.py │ ├── distributed.py │ └── sampler.py └── models │ ├── LICENSE │ ├── __init__.py │ ├── alexnet.py │ ├── densenet.py │ ├── efficientnet.py │ ├── fc.py │ ├── preresnet.py │ ├── resnet.py │ ├── resnext.py │ ├── vgg.py │ └── wrn.py └── utils ├── __init__.py ├── cifar_label.py ├── get_data.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/README.md -------------------------------------------------------------------------------- /learnT_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/learnT_order.py -------------------------------------------------------------------------------- /loss-based-cscore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/loss-based-cscore.py -------------------------------------------------------------------------------- /main_w_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/main_w_test.py -------------------------------------------------------------------------------- /main_wo_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/main_wo_test.py -------------------------------------------------------------------------------- /orders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/orders/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/requirements.txt -------------------------------------------------------------------------------- /third_party/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/third_party/README.md -------------------------------------------------------------------------------- /third_party/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/third_party/__init__.py -------------------------------------------------------------------------------- /third_party/data/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/third_party/data/LICENSE -------------------------------------------------------------------------------- /third_party/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/third_party/data/__init__.py -------------------------------------------------------------------------------- /third_party/data/_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/third_party/data/_utils/__init__.py -------------------------------------------------------------------------------- /third_party/data/_utils/collate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/third_party/data/_utils/collate.py -------------------------------------------------------------------------------- /third_party/data/_utils/fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/third_party/data/_utils/fetch.py -------------------------------------------------------------------------------- /third_party/data/_utils/pin_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/third_party/data/_utils/pin_memory.py -------------------------------------------------------------------------------- /third_party/data/_utils/signal_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/third_party/data/_utils/signal_handling.py -------------------------------------------------------------------------------- /third_party/data/_utils/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/third_party/data/_utils/worker.py -------------------------------------------------------------------------------- /third_party/data/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/third_party/data/dataloader.py -------------------------------------------------------------------------------- /third_party/data/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/third_party/data/dataset.py -------------------------------------------------------------------------------- /third_party/data/distributed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/third_party/data/distributed.py -------------------------------------------------------------------------------- /third_party/data/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/third_party/data/sampler.py -------------------------------------------------------------------------------- /third_party/models/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/third_party/models/LICENSE -------------------------------------------------------------------------------- /third_party/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/third_party/models/__init__.py -------------------------------------------------------------------------------- /third_party/models/alexnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/third_party/models/alexnet.py -------------------------------------------------------------------------------- /third_party/models/densenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/third_party/models/densenet.py -------------------------------------------------------------------------------- /third_party/models/efficientnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/third_party/models/efficientnet.py -------------------------------------------------------------------------------- /third_party/models/fc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/third_party/models/fc.py -------------------------------------------------------------------------------- /third_party/models/preresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/third_party/models/preresnet.py -------------------------------------------------------------------------------- /third_party/models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/third_party/models/resnet.py -------------------------------------------------------------------------------- /third_party/models/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/third_party/models/resnext.py -------------------------------------------------------------------------------- /third_party/models/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/third_party/models/vgg.py -------------------------------------------------------------------------------- /third_party/models/wrn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/third_party/models/wrn.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/cifar_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/utils/cifar_label.py -------------------------------------------------------------------------------- /utils/get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/utils/get_data.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-research/understanding-curricula/HEAD/utils/utils.py --------------------------------------------------------------------------------