File size: 934 Bytes
4ef2835 c60dea4 12024e3 c60dea4 |
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 |
---
license: mit
---
# Smule Renaissance Small
A 10.4M paramater generative audio model for restoring degraded vocals in any situation that runs 10.5x faster than real-time on iPhone 12's CPU.
Outperforms all open source models in subjective quality; matches commericial models on singing voice restoration.
Technical Report: [](https://arxiv.org/abs/2510.21659)
Extreme Degradation Bench: [](https://huggingface.co/datasets/smulelabs/ExtremeDegradationBench)
---
## Getting Started
### Setting up environment
```bash
# Create a virtual environment
uv venv cleanup --python=3.10
source cleanup/bin/activate
uv pip install -r requirements.txt
```
### Running the model
```bash
python main.py {path-to-input} -o {path-to-output} -c {path-to-checkpoint}
``` |