├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── docs ├── Makefile ├── _static │ └── .gitkeep ├── _templates │ └── .gitkeep ├── api.rst ├── changes.rst ├── conf.py ├── index.rst ├── installation.rst ├── make.bat ├── requirements.txt └── tutorial.rst ├── openl3 ├── __init__.py ├── __main__.py ├── cli.py ├── core.py ├── models.py ├── openl3_exceptions.py ├── openl3_warnings.py └── version.py ├── setup.cfg ├── setup.py └── tests ├── data ├── audio │ ├── chirp_1s.wav │ ├── chirp_44k.wav │ ├── chirp_mono.wav │ ├── chirp_stereo.wav │ ├── empty.wav │ ├── short.wav │ └── silence.wav ├── image │ ├── blank.png │ ├── daisy.jpg │ └── smol.png ├── regression │ ├── bento_audio.npz │ ├── bento_audio_kapre.npz │ ├── bento_audio_kapre_linear.npz │ ├── bento_audio_librosa.npz │ ├── bento_audio_librosa_linear.npz │ ├── bento_audio_linear.npz │ ├── bento_image.npz │ ├── bento_image_kapre.npz │ ├── bento_image_kapre_linear.npz │ ├── bento_image_librosa.npz │ ├── bento_image_librosa_linear.npz │ ├── bento_image_linear.npz │ ├── chirp_44k.npz │ ├── chirp_44k_kapre.npz │ ├── chirp_44k_kapre_linear.npz │ ├── chirp_44k_librosa.npz │ ├── chirp_44k_librosa_linear.npz │ ├── chirp_44k_linear.npz │ ├── daisy.npz │ └── daisy_linear.npz └── video │ └── bento.mp4 ├── generate_openl3_regression_data.py ├── generate_regression.py ├── migration ├── Librosa Comparison.ipynb ├── Librosa Test.ipynb ├── README.md ├── check_layer_by_layer.py └── remove_layers.py ├── package_weights.py ├── test_cli.py ├── test_core.py ├── test_models.py └── test_regression.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/docs/changes.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/docs/tutorial.rst -------------------------------------------------------------------------------- /openl3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/openl3/__init__.py -------------------------------------------------------------------------------- /openl3/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/openl3/__main__.py -------------------------------------------------------------------------------- /openl3/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/openl3/cli.py -------------------------------------------------------------------------------- /openl3/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/openl3/core.py -------------------------------------------------------------------------------- /openl3/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/openl3/models.py -------------------------------------------------------------------------------- /openl3/openl3_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/openl3/openl3_exceptions.py -------------------------------------------------------------------------------- /openl3/openl3_warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/openl3/openl3_warnings.py -------------------------------------------------------------------------------- /openl3/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/openl3/version.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/setup.py -------------------------------------------------------------------------------- /tests/data/audio/chirp_1s.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/data/audio/chirp_1s.wav -------------------------------------------------------------------------------- /tests/data/audio/chirp_44k.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/data/audio/chirp_44k.wav -------------------------------------------------------------------------------- /tests/data/audio/chirp_mono.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/data/audio/chirp_mono.wav -------------------------------------------------------------------------------- /tests/data/audio/chirp_stereo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/data/audio/chirp_stereo.wav -------------------------------------------------------------------------------- /tests/data/audio/empty.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/data/audio/empty.wav -------------------------------------------------------------------------------- /tests/data/audio/short.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/data/audio/short.wav -------------------------------------------------------------------------------- /tests/data/audio/silence.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/data/audio/silence.wav -------------------------------------------------------------------------------- /tests/data/image/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/data/image/blank.png -------------------------------------------------------------------------------- /tests/data/image/daisy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/data/image/daisy.jpg -------------------------------------------------------------------------------- /tests/data/image/smol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/data/image/smol.png -------------------------------------------------------------------------------- /tests/data/regression/bento_audio.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/data/regression/bento_audio.npz -------------------------------------------------------------------------------- /tests/data/regression/bento_audio_kapre.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/data/regression/bento_audio_kapre.npz -------------------------------------------------------------------------------- /tests/data/regression/bento_audio_kapre_linear.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/data/regression/bento_audio_kapre_linear.npz -------------------------------------------------------------------------------- /tests/data/regression/bento_audio_librosa.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/data/regression/bento_audio_librosa.npz -------------------------------------------------------------------------------- /tests/data/regression/bento_audio_librosa_linear.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/data/regression/bento_audio_librosa_linear.npz -------------------------------------------------------------------------------- /tests/data/regression/bento_audio_linear.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/data/regression/bento_audio_linear.npz -------------------------------------------------------------------------------- /tests/data/regression/bento_image.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/data/regression/bento_image.npz -------------------------------------------------------------------------------- /tests/data/regression/bento_image_kapre.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/data/regression/bento_image_kapre.npz -------------------------------------------------------------------------------- /tests/data/regression/bento_image_kapre_linear.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/data/regression/bento_image_kapre_linear.npz -------------------------------------------------------------------------------- /tests/data/regression/bento_image_librosa.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/data/regression/bento_image_librosa.npz -------------------------------------------------------------------------------- /tests/data/regression/bento_image_librosa_linear.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/data/regression/bento_image_librosa_linear.npz -------------------------------------------------------------------------------- /tests/data/regression/bento_image_linear.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/data/regression/bento_image_linear.npz -------------------------------------------------------------------------------- /tests/data/regression/chirp_44k.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/data/regression/chirp_44k.npz -------------------------------------------------------------------------------- /tests/data/regression/chirp_44k_kapre.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/data/regression/chirp_44k_kapre.npz -------------------------------------------------------------------------------- /tests/data/regression/chirp_44k_kapre_linear.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/data/regression/chirp_44k_kapre_linear.npz -------------------------------------------------------------------------------- /tests/data/regression/chirp_44k_librosa.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/data/regression/chirp_44k_librosa.npz -------------------------------------------------------------------------------- /tests/data/regression/chirp_44k_librosa_linear.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/data/regression/chirp_44k_librosa_linear.npz -------------------------------------------------------------------------------- /tests/data/regression/chirp_44k_linear.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/data/regression/chirp_44k_linear.npz -------------------------------------------------------------------------------- /tests/data/regression/daisy.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/data/regression/daisy.npz -------------------------------------------------------------------------------- /tests/data/regression/daisy_linear.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/data/regression/daisy_linear.npz -------------------------------------------------------------------------------- /tests/data/video/bento.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/data/video/bento.mp4 -------------------------------------------------------------------------------- /tests/generate_openl3_regression_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/generate_openl3_regression_data.py -------------------------------------------------------------------------------- /tests/generate_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/generate_regression.py -------------------------------------------------------------------------------- /tests/migration/Librosa Comparison.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/migration/Librosa Comparison.ipynb -------------------------------------------------------------------------------- /tests/migration/Librosa Test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/migration/Librosa Test.ipynb -------------------------------------------------------------------------------- /tests/migration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/migration/README.md -------------------------------------------------------------------------------- /tests/migration/check_layer_by_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/migration/check_layer_by_layer.py -------------------------------------------------------------------------------- /tests/migration/remove_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/migration/remove_layers.py -------------------------------------------------------------------------------- /tests/package_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/package_weights.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/test_core.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/test_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marl/openl3/HEAD/tests/test_regression.py --------------------------------------------------------------------------------