├── .gitignore ├── README.md ├── ideas.md ├── images ├── 00a3dd76f.jpg ├── 0a00c7a0f.jpg ├── 0a0c1df99.jpg ├── 0a1a0c3f7.jpg ├── 0a1aa01e8.jpg ├── 0a1e6d6df.jpg ├── 0a2af3c79.jpg ├── 0a2b7202c.jpg ├── 0a3e0cc22.jpg ├── 0a4b8ecf9.jpg └── happy-whale.jpg ├── lr_finder.py.ipynb ├── main000_pytorch_baseline_resnet101.py ├── main001_pytorch_resnet101_cyclic_lr.py ├── pre_compute_mean_std.py ├── speed_test_data_augmentation.py ├── src ├── datafeed.py ├── instrumentation.py ├── learning_rate_pr.py ├── lr_finder.py ├── metrics.py ├── net_classic_arch.py ├── prediction.py ├── training.py └── validation.py └── trainval_split.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mratsim/humpback-whale-identification/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mratsim/humpback-whale-identification/HEAD/README.md -------------------------------------------------------------------------------- /ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mratsim/humpback-whale-identification/HEAD/ideas.md -------------------------------------------------------------------------------- /images/00a3dd76f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mratsim/humpback-whale-identification/HEAD/images/00a3dd76f.jpg -------------------------------------------------------------------------------- /images/0a00c7a0f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mratsim/humpback-whale-identification/HEAD/images/0a00c7a0f.jpg -------------------------------------------------------------------------------- /images/0a0c1df99.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mratsim/humpback-whale-identification/HEAD/images/0a0c1df99.jpg -------------------------------------------------------------------------------- /images/0a1a0c3f7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mratsim/humpback-whale-identification/HEAD/images/0a1a0c3f7.jpg -------------------------------------------------------------------------------- /images/0a1aa01e8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mratsim/humpback-whale-identification/HEAD/images/0a1aa01e8.jpg -------------------------------------------------------------------------------- /images/0a1e6d6df.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mratsim/humpback-whale-identification/HEAD/images/0a1e6d6df.jpg -------------------------------------------------------------------------------- /images/0a2af3c79.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mratsim/humpback-whale-identification/HEAD/images/0a2af3c79.jpg -------------------------------------------------------------------------------- /images/0a2b7202c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mratsim/humpback-whale-identification/HEAD/images/0a2b7202c.jpg -------------------------------------------------------------------------------- /images/0a3e0cc22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mratsim/humpback-whale-identification/HEAD/images/0a3e0cc22.jpg -------------------------------------------------------------------------------- /images/0a4b8ecf9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mratsim/humpback-whale-identification/HEAD/images/0a4b8ecf9.jpg -------------------------------------------------------------------------------- /images/happy-whale.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mratsim/humpback-whale-identification/HEAD/images/happy-whale.jpg -------------------------------------------------------------------------------- /lr_finder.py.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mratsim/humpback-whale-identification/HEAD/lr_finder.py.ipynb -------------------------------------------------------------------------------- /main000_pytorch_baseline_resnet101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mratsim/humpback-whale-identification/HEAD/main000_pytorch_baseline_resnet101.py -------------------------------------------------------------------------------- /main001_pytorch_resnet101_cyclic_lr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mratsim/humpback-whale-identification/HEAD/main001_pytorch_resnet101_cyclic_lr.py -------------------------------------------------------------------------------- /pre_compute_mean_std.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mratsim/humpback-whale-identification/HEAD/pre_compute_mean_std.py -------------------------------------------------------------------------------- /speed_test_data_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mratsim/humpback-whale-identification/HEAD/speed_test_data_augmentation.py -------------------------------------------------------------------------------- /src/datafeed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mratsim/humpback-whale-identification/HEAD/src/datafeed.py -------------------------------------------------------------------------------- /src/instrumentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mratsim/humpback-whale-identification/HEAD/src/instrumentation.py -------------------------------------------------------------------------------- /src/learning_rate_pr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mratsim/humpback-whale-identification/HEAD/src/learning_rate_pr.py -------------------------------------------------------------------------------- /src/lr_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mratsim/humpback-whale-identification/HEAD/src/lr_finder.py -------------------------------------------------------------------------------- /src/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mratsim/humpback-whale-identification/HEAD/src/metrics.py -------------------------------------------------------------------------------- /src/net_classic_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mratsim/humpback-whale-identification/HEAD/src/net_classic_arch.py -------------------------------------------------------------------------------- /src/prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mratsim/humpback-whale-identification/HEAD/src/prediction.py -------------------------------------------------------------------------------- /src/training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mratsim/humpback-whale-identification/HEAD/src/training.py -------------------------------------------------------------------------------- /src/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mratsim/humpback-whale-identification/HEAD/src/validation.py -------------------------------------------------------------------------------- /trainval_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mratsim/humpback-whale-identification/HEAD/trainval_split.py --------------------------------------------------------------------------------