├── .gitignore ├── LICENSE ├── Pipfile ├── README.md ├── data ├── img │ ├── audio-features.png │ ├── sound.png │ └── time_freq.png ├── test.csv └── train.csv ├── notebooks ├── Exploratory Data Analysis.ipynb └── eda_plots │ ├── amplitude_vs_time │ ├── air_conditioner.svg │ ├── car_horn.svg │ ├── children_playing.svg │ ├── dog_bark.svg │ ├── drilling.svg │ ├── engine_idling.svg │ ├── gun_shot.svg │ ├── jackhammer.svg │ ├── siren.svg │ └── street_music.svg │ └── mel_spectrum │ ├── air_conditioner.png │ ├── car_horn.png │ ├── children_playing.png │ ├── dog_bark.png │ ├── drilling.png │ ├── engine_idling.png │ ├── gun_shot.png │ ├── jackhammer.png │ ├── siren.png │ └── street_music.png ├── requirements.txt ├── results ├── acc_model_1d.png ├── acc_model_2d.png ├── loss_model_1d.png ├── loss_model_2d.png ├── pred_1d.csv └── pred_2d.csv └── src ├── test_1d.py ├── test_2d.py ├── train_1d.py ├── train_2d.py ├── utils_1d.py └── utils_2d.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/Pipfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/README.md -------------------------------------------------------------------------------- /data/img/audio-features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/data/img/audio-features.png -------------------------------------------------------------------------------- /data/img/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/data/img/sound.png -------------------------------------------------------------------------------- /data/img/time_freq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/data/img/time_freq.png -------------------------------------------------------------------------------- /data/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/data/test.csv -------------------------------------------------------------------------------- /data/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/data/train.csv -------------------------------------------------------------------------------- /notebooks/Exploratory Data Analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/notebooks/Exploratory Data Analysis.ipynb -------------------------------------------------------------------------------- /notebooks/eda_plots/amplitude_vs_time/air_conditioner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/notebooks/eda_plots/amplitude_vs_time/air_conditioner.svg -------------------------------------------------------------------------------- /notebooks/eda_plots/amplitude_vs_time/car_horn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/notebooks/eda_plots/amplitude_vs_time/car_horn.svg -------------------------------------------------------------------------------- /notebooks/eda_plots/amplitude_vs_time/children_playing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/notebooks/eda_plots/amplitude_vs_time/children_playing.svg -------------------------------------------------------------------------------- /notebooks/eda_plots/amplitude_vs_time/dog_bark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/notebooks/eda_plots/amplitude_vs_time/dog_bark.svg -------------------------------------------------------------------------------- /notebooks/eda_plots/amplitude_vs_time/drilling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/notebooks/eda_plots/amplitude_vs_time/drilling.svg -------------------------------------------------------------------------------- /notebooks/eda_plots/amplitude_vs_time/engine_idling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/notebooks/eda_plots/amplitude_vs_time/engine_idling.svg -------------------------------------------------------------------------------- /notebooks/eda_plots/amplitude_vs_time/gun_shot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/notebooks/eda_plots/amplitude_vs_time/gun_shot.svg -------------------------------------------------------------------------------- /notebooks/eda_plots/amplitude_vs_time/jackhammer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/notebooks/eda_plots/amplitude_vs_time/jackhammer.svg -------------------------------------------------------------------------------- /notebooks/eda_plots/amplitude_vs_time/siren.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/notebooks/eda_plots/amplitude_vs_time/siren.svg -------------------------------------------------------------------------------- /notebooks/eda_plots/amplitude_vs_time/street_music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/notebooks/eda_plots/amplitude_vs_time/street_music.svg -------------------------------------------------------------------------------- /notebooks/eda_plots/mel_spectrum/air_conditioner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/notebooks/eda_plots/mel_spectrum/air_conditioner.png -------------------------------------------------------------------------------- /notebooks/eda_plots/mel_spectrum/car_horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/notebooks/eda_plots/mel_spectrum/car_horn.png -------------------------------------------------------------------------------- /notebooks/eda_plots/mel_spectrum/children_playing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/notebooks/eda_plots/mel_spectrum/children_playing.png -------------------------------------------------------------------------------- /notebooks/eda_plots/mel_spectrum/dog_bark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/notebooks/eda_plots/mel_spectrum/dog_bark.png -------------------------------------------------------------------------------- /notebooks/eda_plots/mel_spectrum/drilling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/notebooks/eda_plots/mel_spectrum/drilling.png -------------------------------------------------------------------------------- /notebooks/eda_plots/mel_spectrum/engine_idling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/notebooks/eda_plots/mel_spectrum/engine_idling.png -------------------------------------------------------------------------------- /notebooks/eda_plots/mel_spectrum/gun_shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/notebooks/eda_plots/mel_spectrum/gun_shot.png -------------------------------------------------------------------------------- /notebooks/eda_plots/mel_spectrum/jackhammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/notebooks/eda_plots/mel_spectrum/jackhammer.png -------------------------------------------------------------------------------- /notebooks/eda_plots/mel_spectrum/siren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/notebooks/eda_plots/mel_spectrum/siren.png -------------------------------------------------------------------------------- /notebooks/eda_plots/mel_spectrum/street_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/notebooks/eda_plots/mel_spectrum/street_music.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/acc_model_1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/results/acc_model_1d.png -------------------------------------------------------------------------------- /results/acc_model_2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/results/acc_model_2d.png -------------------------------------------------------------------------------- /results/loss_model_1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/results/loss_model_1d.png -------------------------------------------------------------------------------- /results/loss_model_2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/results/loss_model_2d.png -------------------------------------------------------------------------------- /results/pred_1d.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/results/pred_1d.csv -------------------------------------------------------------------------------- /results/pred_2d.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/results/pred_2d.csv -------------------------------------------------------------------------------- /src/test_1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/src/test_1d.py -------------------------------------------------------------------------------- /src/test_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/src/test_2d.py -------------------------------------------------------------------------------- /src/train_1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/src/train_1d.py -------------------------------------------------------------------------------- /src/train_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/src/train_2d.py -------------------------------------------------------------------------------- /src/utils_1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/src/utils_1d.py -------------------------------------------------------------------------------- /src/utils_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rednafi/urban-sound-classification/HEAD/src/utils_2d.py --------------------------------------------------------------------------------