https://github.com/kinwaicheuk/source-separation
https://github.com/kinwaicheuk/source-separation
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kinwaicheuk/source-separation
- Owner: KinWaiCheuk
- Created: 2023-05-07T08:02:05.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-16T01:13:05.000Z (almost 2 years ago)
- Last Synced: 2025-03-30T19:22:53.462Z (about 1 month ago)
- Language: Python
- Size: 42 KB
- Stars: 7
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Installation
`pip install -r requirements.txt`
# Reproducing results
```
python test.py checkpoint_path='./diffusion.ckpt'
```# Training Models
Training logs and checkpoints are saved inside `outputs`
## Diffusion model
```
python train.py model=TConv128Diff
```## Encoder-Decoder model
```
python train.py model=TConv128
```## Unet model
```
python train.py model=UNet
```## Multi-modal loss
```
python train.py model=TConv128Spec
```