├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── cmi-antbok.ipynb ├── download_resources.sh ├── images ├── output_11_2.png ├── output_13_1.png ├── output_21_0.png ├── output_28_0.png └── output_39_0.png ├── labeling ├── ANTBOK │ └── training_data │ │ └── ANTBOK_training_labels.csv ├── Images │ ├── Start_labeling_viewSpec_1.png │ ├── empty_clip.png │ ├── song_labeling_1.png │ ├── song_labeling_2.png │ ├── song_labeling_3.png │ ├── song_labeling_all.png │ └── viewSpec_menu.png ├── README.md ├── Xenocanto_labeling_workflow_RNotebook.Rmd ├── Xenocanto_labeling_workflow_RNotebook.md └── viewSpec_cmi.R ├── preprocess.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/acoustic-bird-detection/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/acoustic-bird-detection/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/acoustic-bird-detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/acoustic-bird-detection/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/acoustic-bird-detection/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cmi-antbok.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/acoustic-bird-detection/HEAD/cmi-antbok.ipynb -------------------------------------------------------------------------------- /download_resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/acoustic-bird-detection/HEAD/download_resources.sh -------------------------------------------------------------------------------- /images/output_11_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/acoustic-bird-detection/HEAD/images/output_11_2.png -------------------------------------------------------------------------------- /images/output_13_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/acoustic-bird-detection/HEAD/images/output_13_1.png -------------------------------------------------------------------------------- /images/output_21_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/acoustic-bird-detection/HEAD/images/output_21_0.png -------------------------------------------------------------------------------- /images/output_28_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/acoustic-bird-detection/HEAD/images/output_28_0.png -------------------------------------------------------------------------------- /images/output_39_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/acoustic-bird-detection/HEAD/images/output_39_0.png -------------------------------------------------------------------------------- /labeling/ANTBOK/training_data/ANTBOK_training_labels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/acoustic-bird-detection/HEAD/labeling/ANTBOK/training_data/ANTBOK_training_labels.csv -------------------------------------------------------------------------------- /labeling/Images/Start_labeling_viewSpec_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/acoustic-bird-detection/HEAD/labeling/Images/Start_labeling_viewSpec_1.png -------------------------------------------------------------------------------- /labeling/Images/empty_clip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/acoustic-bird-detection/HEAD/labeling/Images/empty_clip.png -------------------------------------------------------------------------------- /labeling/Images/song_labeling_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/acoustic-bird-detection/HEAD/labeling/Images/song_labeling_1.png -------------------------------------------------------------------------------- /labeling/Images/song_labeling_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/acoustic-bird-detection/HEAD/labeling/Images/song_labeling_2.png -------------------------------------------------------------------------------- /labeling/Images/song_labeling_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/acoustic-bird-detection/HEAD/labeling/Images/song_labeling_3.png -------------------------------------------------------------------------------- /labeling/Images/song_labeling_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/acoustic-bird-detection/HEAD/labeling/Images/song_labeling_all.png -------------------------------------------------------------------------------- /labeling/Images/viewSpec_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/acoustic-bird-detection/HEAD/labeling/Images/viewSpec_menu.png -------------------------------------------------------------------------------- /labeling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/acoustic-bird-detection/HEAD/labeling/README.md -------------------------------------------------------------------------------- /labeling/Xenocanto_labeling_workflow_RNotebook.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/acoustic-bird-detection/HEAD/labeling/Xenocanto_labeling_workflow_RNotebook.Rmd -------------------------------------------------------------------------------- /labeling/Xenocanto_labeling_workflow_RNotebook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/acoustic-bird-detection/HEAD/labeling/Xenocanto_labeling_workflow_RNotebook.md -------------------------------------------------------------------------------- /labeling/viewSpec_cmi.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/acoustic-bird-detection/HEAD/labeling/viewSpec_cmi.R -------------------------------------------------------------------------------- /preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/acoustic-bird-detection/HEAD/preprocess.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/acoustic-bird-detection/HEAD/requirements.txt --------------------------------------------------------------------------------