├── .gitignore ├── LICENSE ├── README.md ├── configs.py ├── input ├── example_test_audio │ ├── BLKFR-10-CPL_20190611_093000.pt540.wav │ └── ORANGE-7-CAP_20190606_093000.pt623.wav ├── example_test_audio_metadata.csv ├── example_test_audio_summary.csv ├── ff1010bird_metadata_2018.csv ├── sample_submission.csv ├── test.csv ├── train.csv └── train_extended.csv ├── kept_logs ├── 2020-08-20_resnest50_fast_1s1x64d_mixup5.txt ├── 2020-08-28_resnest50_fast_1s1x64d_conf.txt ├── 2020-09-08_resnext50_32x4d_extra.txt └── 2020-09-10_resnext101_32x8d_wsl_extra.txt ├── notebooks └── Pseudo labelling.ipynb ├── output ├── 2020-08-20_resnest50_fast_1s1x64d_mixup4.txt ├── 2020-08-21_resnest50_fast_1s1x64d_128x256.txt ├── 2020-08-21_resnest50_fast_1s1x64d_128x384.txt ├── 2020-08-22_resnest50_fast_1s1x64d_256.txt ├── 2020-08-22_resnest50_fast_1s1x64d_64.txt ├── 2020-08-23_resnest101_.txt ├── 2020-08-23_resnest50_.txt ├── 2020-08-24_resnet18_.txt ├── 2020-08-24_resnet34_.txt ├── 2020-08-24_resnet50_.txt ├── 2020-08-25_resnest50_fast_1s1x64d_adaptpool.txt ├── 2020-08-25_resnest50_fast_1s1x64d_maxpool.txt ├── 2020-08-25_resnest50_fast_1s1x64d_msd.txt ├── 2020-08-25_resnet50_avgpool.txt ├── 2020-08-25_resnext101_32x8d_wsl_msd.txt ├── 2020-08-26_resnest50_fast_1s1x64d_specaugment.txt ├── 2020-08-27_efficientnet-b5_.txt ├── 2020-08-27_resnest50_fast_1s1x64d_sample.txt ├── 2020-08-29_resnest50_fast_1s1x64d_conf5.txt ├── 2020-08-30_resnest50_fast_1s1x64d_labelsmoothing.txt ├── 2020-08-30_resnest50_fast_1s1x64d_msdgem.txt ├── 2020-08-31_inception_conf.txt ├── 2020-08-31_resnest50_fast_1s1x64d_specaugment.txt ├── 2020-09-01_efficientnet-b1_conf.txt ├── 2020-09-01_efficientnet-b5_conf.txt ├── 2020-09-01_efficientnet-b7_conf.txt ├── 2020-09-02_resnext101_32x8d_wsl_conf.txt ├── 2020-09-03_resnest50_fast_1s1x64d_lessfreq.txt ├── 2020-09-03_resnet50_conf.txt ├── 2020-09-04_resnext101_32x8d_wsl_conf.txt ├── 2020-09-04_resnext50_32x4d_conf.txt ├── 2020-09-05_resnext101_32x8d_wsl_msdgem.txt ├── 2020-09-06_resnext50_32x4d_.txt ├── 2020-09-12_resnest50_fast_1s1x64d_extra.txt ├── 2020-09-13_resnest50_fast_1s1x64d_double.txt └── dataset-metadata.json └── src ├── data ├── dataset.py └── transforms.py ├── logger.py ├── main.py ├── model_zoo └── models.py ├── params.py ├── training └── train.py └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/README.md -------------------------------------------------------------------------------- /configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/configs.py -------------------------------------------------------------------------------- /input/example_test_audio/BLKFR-10-CPL_20190611_093000.pt540.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/input/example_test_audio/BLKFR-10-CPL_20190611_093000.pt540.wav -------------------------------------------------------------------------------- /input/example_test_audio/ORANGE-7-CAP_20190606_093000.pt623.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/input/example_test_audio/ORANGE-7-CAP_20190606_093000.pt623.wav -------------------------------------------------------------------------------- /input/example_test_audio_metadata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/input/example_test_audio_metadata.csv -------------------------------------------------------------------------------- /input/example_test_audio_summary.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/input/example_test_audio_summary.csv -------------------------------------------------------------------------------- /input/ff1010bird_metadata_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/input/ff1010bird_metadata_2018.csv -------------------------------------------------------------------------------- /input/sample_submission.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/input/sample_submission.csv -------------------------------------------------------------------------------- /input/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/input/test.csv -------------------------------------------------------------------------------- /input/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/input/train.csv -------------------------------------------------------------------------------- /input/train_extended.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/input/train_extended.csv -------------------------------------------------------------------------------- /kept_logs/2020-08-20_resnest50_fast_1s1x64d_mixup5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/kept_logs/2020-08-20_resnest50_fast_1s1x64d_mixup5.txt -------------------------------------------------------------------------------- /kept_logs/2020-08-28_resnest50_fast_1s1x64d_conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/kept_logs/2020-08-28_resnest50_fast_1s1x64d_conf.txt -------------------------------------------------------------------------------- /kept_logs/2020-09-08_resnext50_32x4d_extra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/kept_logs/2020-09-08_resnext50_32x4d_extra.txt -------------------------------------------------------------------------------- /kept_logs/2020-09-10_resnext101_32x8d_wsl_extra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/kept_logs/2020-09-10_resnext101_32x8d_wsl_extra.txt -------------------------------------------------------------------------------- /notebooks/Pseudo labelling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/notebooks/Pseudo labelling.ipynb -------------------------------------------------------------------------------- /output/2020-08-20_resnest50_fast_1s1x64d_mixup4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-08-20_resnest50_fast_1s1x64d_mixup4.txt -------------------------------------------------------------------------------- /output/2020-08-21_resnest50_fast_1s1x64d_128x256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-08-21_resnest50_fast_1s1x64d_128x256.txt -------------------------------------------------------------------------------- /output/2020-08-21_resnest50_fast_1s1x64d_128x384.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-08-21_resnest50_fast_1s1x64d_128x384.txt -------------------------------------------------------------------------------- /output/2020-08-22_resnest50_fast_1s1x64d_256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-08-22_resnest50_fast_1s1x64d_256.txt -------------------------------------------------------------------------------- /output/2020-08-22_resnest50_fast_1s1x64d_64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-08-22_resnest50_fast_1s1x64d_64.txt -------------------------------------------------------------------------------- /output/2020-08-23_resnest101_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-08-23_resnest101_.txt -------------------------------------------------------------------------------- /output/2020-08-23_resnest50_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-08-23_resnest50_.txt -------------------------------------------------------------------------------- /output/2020-08-24_resnet18_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-08-24_resnet18_.txt -------------------------------------------------------------------------------- /output/2020-08-24_resnet34_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-08-24_resnet34_.txt -------------------------------------------------------------------------------- /output/2020-08-24_resnet50_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-08-24_resnet50_.txt -------------------------------------------------------------------------------- /output/2020-08-25_resnest50_fast_1s1x64d_adaptpool.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-08-25_resnest50_fast_1s1x64d_adaptpool.txt -------------------------------------------------------------------------------- /output/2020-08-25_resnest50_fast_1s1x64d_maxpool.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-08-25_resnest50_fast_1s1x64d_maxpool.txt -------------------------------------------------------------------------------- /output/2020-08-25_resnest50_fast_1s1x64d_msd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-08-25_resnest50_fast_1s1x64d_msd.txt -------------------------------------------------------------------------------- /output/2020-08-25_resnet50_avgpool.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-08-25_resnet50_avgpool.txt -------------------------------------------------------------------------------- /output/2020-08-25_resnext101_32x8d_wsl_msd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-08-25_resnext101_32x8d_wsl_msd.txt -------------------------------------------------------------------------------- /output/2020-08-26_resnest50_fast_1s1x64d_specaugment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-08-26_resnest50_fast_1s1x64d_specaugment.txt -------------------------------------------------------------------------------- /output/2020-08-27_efficientnet-b5_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-08-27_efficientnet-b5_.txt -------------------------------------------------------------------------------- /output/2020-08-27_resnest50_fast_1s1x64d_sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-08-27_resnest50_fast_1s1x64d_sample.txt -------------------------------------------------------------------------------- /output/2020-08-29_resnest50_fast_1s1x64d_conf5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-08-29_resnest50_fast_1s1x64d_conf5.txt -------------------------------------------------------------------------------- /output/2020-08-30_resnest50_fast_1s1x64d_labelsmoothing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-08-30_resnest50_fast_1s1x64d_labelsmoothing.txt -------------------------------------------------------------------------------- /output/2020-08-30_resnest50_fast_1s1x64d_msdgem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-08-30_resnest50_fast_1s1x64d_msdgem.txt -------------------------------------------------------------------------------- /output/2020-08-31_inception_conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-08-31_inception_conf.txt -------------------------------------------------------------------------------- /output/2020-08-31_resnest50_fast_1s1x64d_specaugment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-08-31_resnest50_fast_1s1x64d_specaugment.txt -------------------------------------------------------------------------------- /output/2020-09-01_efficientnet-b1_conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-09-01_efficientnet-b1_conf.txt -------------------------------------------------------------------------------- /output/2020-09-01_efficientnet-b5_conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-09-01_efficientnet-b5_conf.txt -------------------------------------------------------------------------------- /output/2020-09-01_efficientnet-b7_conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-09-01_efficientnet-b7_conf.txt -------------------------------------------------------------------------------- /output/2020-09-02_resnext101_32x8d_wsl_conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-09-02_resnext101_32x8d_wsl_conf.txt -------------------------------------------------------------------------------- /output/2020-09-03_resnest50_fast_1s1x64d_lessfreq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-09-03_resnest50_fast_1s1x64d_lessfreq.txt -------------------------------------------------------------------------------- /output/2020-09-03_resnet50_conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-09-03_resnet50_conf.txt -------------------------------------------------------------------------------- /output/2020-09-04_resnext101_32x8d_wsl_conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-09-04_resnext101_32x8d_wsl_conf.txt -------------------------------------------------------------------------------- /output/2020-09-04_resnext50_32x4d_conf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-09-04_resnext50_32x4d_conf.txt -------------------------------------------------------------------------------- /output/2020-09-05_resnext101_32x8d_wsl_msdgem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-09-05_resnext101_32x8d_wsl_msdgem.txt -------------------------------------------------------------------------------- /output/2020-09-06_resnext50_32x4d_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-09-06_resnext50_32x4d_.txt -------------------------------------------------------------------------------- /output/2020-09-12_resnest50_fast_1s1x64d_extra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-09-12_resnest50_fast_1s1x64d_extra.txt -------------------------------------------------------------------------------- /output/2020-09-13_resnest50_fast_1s1x64d_double.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/2020-09-13_resnest50_fast_1s1x64d_double.txt -------------------------------------------------------------------------------- /output/dataset-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/output/dataset-metadata.json -------------------------------------------------------------------------------- /src/data/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/src/data/dataset.py -------------------------------------------------------------------------------- /src/data/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/src/data/transforms.py -------------------------------------------------------------------------------- /src/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/src/logger.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/src/main.py -------------------------------------------------------------------------------- /src/model_zoo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/src/model_zoo/models.py -------------------------------------------------------------------------------- /src/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/src/params.py -------------------------------------------------------------------------------- /src/training/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/src/training/train.py -------------------------------------------------------------------------------- /src/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheoViel/kaggle_birdcall_identification/HEAD/src/util.py --------------------------------------------------------------------------------