├── .gitingnore ├── LICENSE ├── ModelLib.py ├── README.md ├── cache.py ├── classic_nets_imagenet.py ├── data ├── cifar10 │ ├── inceptionsvm_test_values.pkl │ └── inceptionsvm_train_values.pkl ├── cifar100 │ ├── inceptionsvm_test_values.pkl │ └── inceptionsvm_train_values.pkl └── cifar_100_superclass_16 │ ├── inception_cifar_100_superclass_16_test.pkl │ ├── inception_cifar_100_superclass_16_train.pkl │ ├── inceptionsvm_test_values.pkl │ └── inceptionsvm_train_values.pkl ├── datasets ├── Dataset.py ├── cifar10.py ├── cifar100.py └── cifar100_subset.py ├── download.py ├── main_reproduce_paper.py ├── main_train_networks.py ├── models ├── cifar100_model.py └── inception.py ├── requirements.txt ├── train_keras_model.py └── transfer_learning.py /.gitingnore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyHacohen/curriculum_learning/HEAD/.gitingnore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyHacohen/curriculum_learning/HEAD/LICENSE -------------------------------------------------------------------------------- /ModelLib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyHacohen/curriculum_learning/HEAD/ModelLib.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyHacohen/curriculum_learning/HEAD/README.md -------------------------------------------------------------------------------- /cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyHacohen/curriculum_learning/HEAD/cache.py -------------------------------------------------------------------------------- /classic_nets_imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyHacohen/curriculum_learning/HEAD/classic_nets_imagenet.py -------------------------------------------------------------------------------- /data/cifar10/inceptionsvm_test_values.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyHacohen/curriculum_learning/HEAD/data/cifar10/inceptionsvm_test_values.pkl -------------------------------------------------------------------------------- /data/cifar10/inceptionsvm_train_values.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyHacohen/curriculum_learning/HEAD/data/cifar10/inceptionsvm_train_values.pkl -------------------------------------------------------------------------------- /data/cifar100/inceptionsvm_test_values.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyHacohen/curriculum_learning/HEAD/data/cifar100/inceptionsvm_test_values.pkl -------------------------------------------------------------------------------- /data/cifar100/inceptionsvm_train_values.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyHacohen/curriculum_learning/HEAD/data/cifar100/inceptionsvm_train_values.pkl -------------------------------------------------------------------------------- /data/cifar_100_superclass_16/inception_cifar_100_superclass_16_test.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyHacohen/curriculum_learning/HEAD/data/cifar_100_superclass_16/inception_cifar_100_superclass_16_test.pkl -------------------------------------------------------------------------------- /data/cifar_100_superclass_16/inception_cifar_100_superclass_16_train.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyHacohen/curriculum_learning/HEAD/data/cifar_100_superclass_16/inception_cifar_100_superclass_16_train.pkl -------------------------------------------------------------------------------- /data/cifar_100_superclass_16/inceptionsvm_test_values.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyHacohen/curriculum_learning/HEAD/data/cifar_100_superclass_16/inceptionsvm_test_values.pkl -------------------------------------------------------------------------------- /data/cifar_100_superclass_16/inceptionsvm_train_values.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyHacohen/curriculum_learning/HEAD/data/cifar_100_superclass_16/inceptionsvm_train_values.pkl -------------------------------------------------------------------------------- /datasets/Dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyHacohen/curriculum_learning/HEAD/datasets/Dataset.py -------------------------------------------------------------------------------- /datasets/cifar10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyHacohen/curriculum_learning/HEAD/datasets/cifar10.py -------------------------------------------------------------------------------- /datasets/cifar100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyHacohen/curriculum_learning/HEAD/datasets/cifar100.py -------------------------------------------------------------------------------- /datasets/cifar100_subset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyHacohen/curriculum_learning/HEAD/datasets/cifar100_subset.py -------------------------------------------------------------------------------- /download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyHacohen/curriculum_learning/HEAD/download.py -------------------------------------------------------------------------------- /main_reproduce_paper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyHacohen/curriculum_learning/HEAD/main_reproduce_paper.py -------------------------------------------------------------------------------- /main_train_networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyHacohen/curriculum_learning/HEAD/main_train_networks.py -------------------------------------------------------------------------------- /models/cifar100_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyHacohen/curriculum_learning/HEAD/models/cifar100_model.py -------------------------------------------------------------------------------- /models/inception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyHacohen/curriculum_learning/HEAD/models/inception.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyHacohen/curriculum_learning/HEAD/requirements.txt -------------------------------------------------------------------------------- /train_keras_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyHacohen/curriculum_learning/HEAD/train_keras_model.py -------------------------------------------------------------------------------- /transfer_learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuyHacohen/curriculum_learning/HEAD/transfer_learning.py --------------------------------------------------------------------------------