File size: 989 Bytes
073015e 36ca818 9654063 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
---
license: mit
---
# AUV
> Teaching **A**udio **U**niversal **V**ector Quantization with Single Nested Codebook
[](https://www.python.org/)
[](https://arxiv.org/abs/2509.21968)
[](https://swivid.github.io/AUV/)
## Setup
```bash
pip install auv
wget https://huggingface.co/SWivid/AUV/resolve/main/auv.pt
```
## Inference
Command line usage, reconstruct all `.wav` files under the `input-dir` and write to the `output-dir`:
```bash
auv-infer --input-dir INPUT_WAV_DIR --output-dir OUTPUT_WAV_DIR --ckpt CKPT_PATH
# if torch.bfloat16 inference: --bf16
# if need to assign gpu: --device cuda:0
```
Python script usage see [`src/auv/infer.py`](https://github.com/SWivid/AUV/blob/main/src/auv/infer.py). |