├── .gitignore ├── README.md ├── examples ├── benchmark.png ├── benchmarks.py ├── comparison.png ├── sample.wav └── test.py ├── lpctorch ├── __init__.py └── lpc.py ├── pyp.json ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yliess86/LPCTorch/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yliess86/LPCTorch/HEAD/README.md -------------------------------------------------------------------------------- /examples/benchmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yliess86/LPCTorch/HEAD/examples/benchmark.png -------------------------------------------------------------------------------- /examples/benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yliess86/LPCTorch/HEAD/examples/benchmarks.py -------------------------------------------------------------------------------- /examples/comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yliess86/LPCTorch/HEAD/examples/comparison.png -------------------------------------------------------------------------------- /examples/sample.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yliess86/LPCTorch/HEAD/examples/sample.wav -------------------------------------------------------------------------------- /examples/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yliess86/LPCTorch/HEAD/examples/test.py -------------------------------------------------------------------------------- /lpctorch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yliess86/LPCTorch/HEAD/lpctorch/__init__.py -------------------------------------------------------------------------------- /lpctorch/lpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yliess86/LPCTorch/HEAD/lpctorch/lpc.py -------------------------------------------------------------------------------- /pyp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yliess86/LPCTorch/HEAD/pyp.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yliess86/LPCTorch/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yliess86/LPCTorch/HEAD/setup.py --------------------------------------------------------------------------------