├── .gitignore ├── LICENSE.txt ├── README.md ├── audio_please_unzip.zip ├── data └── info_file.csv ├── environments ├── requirements.txt └── umap_tut_env.yaml ├── example_imgs └── tool_image.png ├── functions ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── audio_functions.cpython-37.pyc │ ├── custom_dist_functions_umap.cpython-37.pyc │ ├── evaluation_functions.cpython-37.pyc │ ├── plot_functions.cpython-37.pyc │ └── preprocessing_functions.cpython-37.pyc ├── audio_functions.py ├── custom_dist_functions_umap.py ├── evaluation_functions.py ├── plot_functions.py └── preprocessing_functions.py ├── notebooks ├── .ipynb_checkpoints │ ├── 01_generate_spectrograms-checkpoint.ipynb │ ├── 02a_generate_UMAP_basic-checkpoint.ipynb │ ├── 02b_generate_UMAP_timeshift-checkpoint.ipynb │ ├── 03_UMAP_clustering-checkpoint.ipynb │ ├── 03_UMAP_eval-checkpoint.ipynb │ ├── 03_UMAP_viz_part_1_prep-checkpoint.ipynb │ └── 03_UMAP_viz_part_2_tool-checkpoint.ipynb ├── 01_generate_spectrograms.ipynb ├── 02a_generate_UMAP_basic.ipynb ├── 02b_generate_UMAP_timeshift.ipynb ├── 03_UMAP_clustering.ipynb ├── 03_UMAP_eval.ipynb ├── 03_UMAP_viz_part_1_prep.ipynb └── 03_UMAP_viz_part_2_tool.ipynb ├── parameters ├── __pycache__ │ └── spec_params.cpython-37.pyc └── spec_params.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/README.md -------------------------------------------------------------------------------- /audio_please_unzip.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/audio_please_unzip.zip -------------------------------------------------------------------------------- /data/info_file.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/data/info_file.csv -------------------------------------------------------------------------------- /environments/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/environments/requirements.txt -------------------------------------------------------------------------------- /environments/umap_tut_env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/environments/umap_tut_env.yaml -------------------------------------------------------------------------------- /example_imgs/tool_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/example_imgs/tool_image.png -------------------------------------------------------------------------------- /functions/__init__.py: -------------------------------------------------------------------------------- 1 | # init 2 | -------------------------------------------------------------------------------- /functions/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/functions/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /functions/__pycache__/audio_functions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/functions/__pycache__/audio_functions.cpython-37.pyc -------------------------------------------------------------------------------- /functions/__pycache__/custom_dist_functions_umap.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/functions/__pycache__/custom_dist_functions_umap.cpython-37.pyc -------------------------------------------------------------------------------- /functions/__pycache__/evaluation_functions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/functions/__pycache__/evaluation_functions.cpython-37.pyc -------------------------------------------------------------------------------- /functions/__pycache__/plot_functions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/functions/__pycache__/plot_functions.cpython-37.pyc -------------------------------------------------------------------------------- /functions/__pycache__/preprocessing_functions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/functions/__pycache__/preprocessing_functions.cpython-37.pyc -------------------------------------------------------------------------------- /functions/audio_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/functions/audio_functions.py -------------------------------------------------------------------------------- /functions/custom_dist_functions_umap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/functions/custom_dist_functions_umap.py -------------------------------------------------------------------------------- /functions/evaluation_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/functions/evaluation_functions.py -------------------------------------------------------------------------------- /functions/plot_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/functions/plot_functions.py -------------------------------------------------------------------------------- /functions/preprocessing_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/functions/preprocessing_functions.py -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/01_generate_spectrograms-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/notebooks/.ipynb_checkpoints/01_generate_spectrograms-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/02a_generate_UMAP_basic-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/notebooks/.ipynb_checkpoints/02a_generate_UMAP_basic-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/02b_generate_UMAP_timeshift-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/notebooks/.ipynb_checkpoints/02b_generate_UMAP_timeshift-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/03_UMAP_clustering-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/notebooks/.ipynb_checkpoints/03_UMAP_clustering-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/03_UMAP_eval-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/notebooks/.ipynb_checkpoints/03_UMAP_eval-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/03_UMAP_viz_part_1_prep-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/notebooks/.ipynb_checkpoints/03_UMAP_viz_part_1_prep-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/03_UMAP_viz_part_2_tool-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/notebooks/.ipynb_checkpoints/03_UMAP_viz_part_2_tool-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/01_generate_spectrograms.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/notebooks/01_generate_spectrograms.ipynb -------------------------------------------------------------------------------- /notebooks/02a_generate_UMAP_basic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/notebooks/02a_generate_UMAP_basic.ipynb -------------------------------------------------------------------------------- /notebooks/02b_generate_UMAP_timeshift.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/notebooks/02b_generate_UMAP_timeshift.ipynb -------------------------------------------------------------------------------- /notebooks/03_UMAP_clustering.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/notebooks/03_UMAP_clustering.ipynb -------------------------------------------------------------------------------- /notebooks/03_UMAP_eval.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/notebooks/03_UMAP_eval.ipynb -------------------------------------------------------------------------------- /notebooks/03_UMAP_viz_part_1_prep.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/notebooks/03_UMAP_viz_part_1_prep.ipynb -------------------------------------------------------------------------------- /notebooks/03_UMAP_viz_part_2_tool.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/notebooks/03_UMAP_viz_part_2_tool.ipynb -------------------------------------------------------------------------------- /parameters/__pycache__/spec_params.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/parameters/__pycache__/spec_params.cpython-37.pyc -------------------------------------------------------------------------------- /parameters/spec_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/parameters/spec_params.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marathomas/tutorial_repo/HEAD/setup.py --------------------------------------------------------------------------------