├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── acronyms.md ├── advice_review.md ├── architectures.md ├── authors.md ├── client.py ├── datasets.md ├── dl4m.bib ├── dl4m.py ├── dl4m.tsv ├── download.py ├── fig ├── articles_per_year.png ├── logo.png ├── pie_chart_architecture.png ├── pie_chart_dataset.png ├── pie_chart_framework.png └── pie_chart_task.png ├── frameworks.md ├── publication_type.md ├── reproducibility.md ├── sources.md └── tasks.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Best-Audio-Classification-Resources-with-Deep-learning/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Best-Audio-Classification-Resources-with-Deep-learning/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Best-Audio-Classification-Resources-with-Deep-learning/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Best-Audio-Classification-Resources-with-Deep-learning/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Best-Audio-Classification-Resources-with-Deep-learning/HEAD/README.md -------------------------------------------------------------------------------- /acronyms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Best-Audio-Classification-Resources-with-Deep-learning/HEAD/acronyms.md -------------------------------------------------------------------------------- /advice_review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Best-Audio-Classification-Resources-with-Deep-learning/HEAD/advice_review.md -------------------------------------------------------------------------------- /architectures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Best-Audio-Classification-Resources-with-Deep-learning/HEAD/architectures.md -------------------------------------------------------------------------------- /authors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Best-Audio-Classification-Resources-with-Deep-learning/HEAD/authors.md -------------------------------------------------------------------------------- /client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Best-Audio-Classification-Resources-with-Deep-learning/HEAD/client.py -------------------------------------------------------------------------------- /datasets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Best-Audio-Classification-Resources-with-Deep-learning/HEAD/datasets.md -------------------------------------------------------------------------------- /dl4m.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Best-Audio-Classification-Resources-with-Deep-learning/HEAD/dl4m.bib -------------------------------------------------------------------------------- /dl4m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Best-Audio-Classification-Resources-with-Deep-learning/HEAD/dl4m.py -------------------------------------------------------------------------------- /dl4m.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Best-Audio-Classification-Resources-with-Deep-learning/HEAD/dl4m.tsv -------------------------------------------------------------------------------- /download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Best-Audio-Classification-Resources-with-Deep-learning/HEAD/download.py -------------------------------------------------------------------------------- /fig/articles_per_year.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Best-Audio-Classification-Resources-with-Deep-learning/HEAD/fig/articles_per_year.png -------------------------------------------------------------------------------- /fig/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Best-Audio-Classification-Resources-with-Deep-learning/HEAD/fig/logo.png -------------------------------------------------------------------------------- /fig/pie_chart_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Best-Audio-Classification-Resources-with-Deep-learning/HEAD/fig/pie_chart_architecture.png -------------------------------------------------------------------------------- /fig/pie_chart_dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Best-Audio-Classification-Resources-with-Deep-learning/HEAD/fig/pie_chart_dataset.png -------------------------------------------------------------------------------- /fig/pie_chart_framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Best-Audio-Classification-Resources-with-Deep-learning/HEAD/fig/pie_chart_framework.png -------------------------------------------------------------------------------- /fig/pie_chart_task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Best-Audio-Classification-Resources-with-Deep-learning/HEAD/fig/pie_chart_task.png -------------------------------------------------------------------------------- /frameworks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Best-Audio-Classification-Resources-with-Deep-learning/HEAD/frameworks.md -------------------------------------------------------------------------------- /publication_type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Best-Audio-Classification-Resources-with-Deep-learning/HEAD/publication_type.md -------------------------------------------------------------------------------- /reproducibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Best-Audio-Classification-Resources-with-Deep-learning/HEAD/reproducibility.md -------------------------------------------------------------------------------- /sources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Best-Audio-Classification-Resources-with-Deep-learning/HEAD/sources.md -------------------------------------------------------------------------------- /tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashishpatel26/Best-Audio-Classification-Resources-with-Deep-learning/HEAD/tasks.md --------------------------------------------------------------------------------