├── .gitignore ├── LICENSE ├── README.md ├── create_databases ├── compute_mean.py ├── create_caltech.py ├── create_dogs.py ├── create_foods.py ├── create_indoors.py └── create_places365.py ├── database ├── __init__.py └── dataset_reader.py ├── experiment_manager ├── __init__.py ├── print_results.py └── utils.py ├── model ├── __init__.py ├── network_base.py ├── resnet.py └── utils.py ├── network_verification ├── resnet_verification.py └── resnet_verification_places.py ├── run_classification ├── run_exp.py └── train.sh └── z_pretrained_weights └── download_resnet_v1_101.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyseven/TransferLearningClassification/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyseven/TransferLearningClassification/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyseven/TransferLearningClassification/HEAD/README.md -------------------------------------------------------------------------------- /create_databases/compute_mean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyseven/TransferLearningClassification/HEAD/create_databases/compute_mean.py -------------------------------------------------------------------------------- /create_databases/create_caltech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyseven/TransferLearningClassification/HEAD/create_databases/create_caltech.py -------------------------------------------------------------------------------- /create_databases/create_dogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyseven/TransferLearningClassification/HEAD/create_databases/create_dogs.py -------------------------------------------------------------------------------- /create_databases/create_foods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyseven/TransferLearningClassification/HEAD/create_databases/create_foods.py -------------------------------------------------------------------------------- /create_databases/create_indoors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyseven/TransferLearningClassification/HEAD/create_databases/create_indoors.py -------------------------------------------------------------------------------- /create_databases/create_places365.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyseven/TransferLearningClassification/HEAD/create_databases/create_places365.py -------------------------------------------------------------------------------- /database/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/dataset_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyseven/TransferLearningClassification/HEAD/database/dataset_reader.py -------------------------------------------------------------------------------- /experiment_manager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /experiment_manager/print_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyseven/TransferLearningClassification/HEAD/experiment_manager/print_results.py -------------------------------------------------------------------------------- /experiment_manager/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyseven/TransferLearningClassification/HEAD/experiment_manager/utils.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/network_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyseven/TransferLearningClassification/HEAD/model/network_base.py -------------------------------------------------------------------------------- /model/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyseven/TransferLearningClassification/HEAD/model/resnet.py -------------------------------------------------------------------------------- /model/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyseven/TransferLearningClassification/HEAD/model/utils.py -------------------------------------------------------------------------------- /network_verification/resnet_verification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyseven/TransferLearningClassification/HEAD/network_verification/resnet_verification.py -------------------------------------------------------------------------------- /network_verification/resnet_verification_places.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyseven/TransferLearningClassification/HEAD/network_verification/resnet_verification_places.py -------------------------------------------------------------------------------- /run_classification/run_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyseven/TransferLearningClassification/HEAD/run_classification/run_exp.py -------------------------------------------------------------------------------- /run_classification/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyseven/TransferLearningClassification/HEAD/run_classification/train.sh -------------------------------------------------------------------------------- /z_pretrained_weights/download_resnet_v1_101.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holyseven/TransferLearningClassification/HEAD/z_pretrained_weights/download_resnet_v1_101.sh --------------------------------------------------------------------------------