├── .gitignore ├── LICENSE ├── README.md ├── filters ├── auditory_filters_speech.pth └── filters.png ├── hybra ├── __init__.py ├── hybridfilterbank.py └── utils.py ├── main.py ├── model zoo ├── FFTModel240.pth └── HybrAModel200.pth ├── requirements.txt ├── src ├── __init__.py ├── datasets.py ├── losses.py └── model.py └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixperfler/Stable-Hybrid-Auditory-Filterbanks/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixperfler/Stable-Hybrid-Auditory-Filterbanks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixperfler/Stable-Hybrid-Auditory-Filterbanks/HEAD/README.md -------------------------------------------------------------------------------- /filters/auditory_filters_speech.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixperfler/Stable-Hybrid-Auditory-Filterbanks/HEAD/filters/auditory_filters_speech.pth -------------------------------------------------------------------------------- /filters/filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixperfler/Stable-Hybrid-Auditory-Filterbanks/HEAD/filters/filters.png -------------------------------------------------------------------------------- /hybra/__init__.py: -------------------------------------------------------------------------------- 1 | from .hybridfilterbank import HybrA -------------------------------------------------------------------------------- /hybra/hybridfilterbank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixperfler/Stable-Hybrid-Auditory-Filterbanks/HEAD/hybra/hybridfilterbank.py -------------------------------------------------------------------------------- /hybra/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixperfler/Stable-Hybrid-Auditory-Filterbanks/HEAD/hybra/utils.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixperfler/Stable-Hybrid-Auditory-Filterbanks/HEAD/main.py -------------------------------------------------------------------------------- /model zoo/FFTModel240.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixperfler/Stable-Hybrid-Auditory-Filterbanks/HEAD/model zoo/FFTModel240.pth -------------------------------------------------------------------------------- /model zoo/HybrAModel200.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixperfler/Stable-Hybrid-Auditory-Filterbanks/HEAD/model zoo/HybrAModel200.pth -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixperfler/Stable-Hybrid-Auditory-Filterbanks/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixperfler/Stable-Hybrid-Auditory-Filterbanks/HEAD/src/datasets.py -------------------------------------------------------------------------------- /src/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixperfler/Stable-Hybrid-Auditory-Filterbanks/HEAD/src/losses.py -------------------------------------------------------------------------------- /src/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixperfler/Stable-Hybrid-Auditory-Filterbanks/HEAD/src/model.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixperfler/Stable-Hybrid-Auditory-Filterbanks/HEAD/test.py --------------------------------------------------------------------------------