File size: 1,741 Bytes
88b5dc0 |
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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
## Usage
### Installation
Install the stable version:
```bash
pip install resemble-enhance --upgrade
```
Or try the latest pre-release version:
```bash
pip install resemble-enhance --upgrade --pre
```
### Enhance
```
resemble_enhance in_dir out_dir
```
### Denoise only
```
resemble_enhance in_dir out_dir --denoise_only
```
### Web Demo
We provide a web demo built with Gradio, you can try it out [here](https://huggingface.co./spaces/ResembleAI/resemble-enhance), or also run it locally:
```
python app.py
```
## Train your own model
### Data Preparation
You need to prepare a foreground speech dataset and a background non-speech dataset. In addition, you need to prepare a RIR dataset ([examples](https://github.com/RoyJames/room-impulse-responses)).
```bash
data
βββ fg
βΒ Β βββ 00001.wav
βΒ Β βββ ...
βββ bg
βΒ Β βββ 00001.wav
βΒ Β βββ ...
βββ rir
Β Β βββ 00001.npy
Β Β βββ ...
```
### Training
#### Denoiser Warmup
Though the denoiser is trained jointly with the enhancer, it is recommended for a warmup training first.
```bash
python -m resemble_enhance.denoiser.train --yaml config/denoiser.yaml runs/denoiser
```
#### Enhancer
Then, you can train the enhancer in two stages. The first stage is to train the autoencoder and vocoder. And the second stage is to train the latent conditional flow matching (CFM) model.
##### Stage 1
```bash
python -m resemble_enhance.enhancer.train --yaml config/enhancer_stage1.yaml runs/enhancer_stage1
```
##### Stage 2
```bash
python -m resemble_enhance.enhancer.train --yaml config/enhancer_stage2.yaml runs/enhancer_stage2
```
## Blog
Learn more on our [website](https://www.resemble.ai/enhance/)!
|