├── .github └── workflows │ └── python-publish.yml ├── .gitignore ├── .pre-commit-config.yaml ├── IMAGE.png ├── LICENSE ├── README.md ├── cqt_pytorch ├── __init__.py └── cqt.py └── setup.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archinetai/cqt-pytorch/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archinetai/cqt-pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archinetai/cqt-pytorch/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /IMAGE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archinetai/cqt-pytorch/HEAD/IMAGE.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archinetai/cqt-pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archinetai/cqt-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /cqt_pytorch/__init__.py: -------------------------------------------------------------------------------- 1 | from .cqt import CQT 2 | -------------------------------------------------------------------------------- /cqt_pytorch/cqt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archinetai/cqt-pytorch/HEAD/cqt_pytorch/cqt.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archinetai/cqt-pytorch/HEAD/setup.py --------------------------------------------------------------------------------