HS TasNet
Project description
HS-TasNet (wip)
Implementation of HS-TasNet, "Real-time Low-latency Music Source Separation using Hybrid Spectrogram-TasNet", proposed by the research team at L-Acoustics
Install
$ pip install HS-TasNet
Usage
# model
from hs_tasnet import HSTasNet
model = HSTasNet()
# the musdb dataset
import musdb
mus = musdb.DB(download = True)
# trainer
from hs_tasnet import Trainer
trainer = Trainer(
model,
dataset = mus,
batch_size = 2,
max_steps = 2,
cpu = True,
)
trainer()
# after much training
# inferencing
model.sounddevice_stream(
duration_seconds = 2,
return_reduced_sources = [0, 2]
)
# or from the exponentially smoothed model (in the trainer)
trainer.ema_model.sounddevice_stream(...)
# or you can load from a specific checkpoint
model.load('./checkpoints/path.to.desired.ckpt.pt')
model.sounddevice_stream(...)
Training script
First make sure dependencies are there by running
$ sh install.sh
Then make sure uv is installed
$ pip install uv
Finally, and make sure the loss goes down
$ uv run train.py
For distributed training, you just need to run accelerate config first, courtesy of accelerate from 🤗 but single machine is fine too
Experiment tracking
To enable online experiment monitoring / tracking, you need to have wandb installed and logged in
$ pip install wandb && wandb login
Then
$ uv run train.py --use-wandb
Sponsors
This open sourced work is sponsored by Sweet Spot
Citations
@misc{venkatesh2024realtimelowlatencymusicsource,
title = {Real-time Low-latency Music Source Separation using Hybrid Spectrogram-TasNet},
author = {Satvik Venkatesh and Arthur Benilov and Philip Coleman and Frederic Roskam},
year = {2024},
eprint = {2402.17701},
archivePrefix = {arXiv},
primaryClass = {eess.AS},
url = {https://arxiv.org/abs/2402.17701},
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file hs_tasnet-0.1.31.tar.gz.
File metadata
- Download URL: hs_tasnet-0.1.31.tar.gz
- Upload date:
- Size: 319.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.23
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b009b439966c35557fc13d053a6ae0228f9d0d67e8dea641e278a2a27d5a140
|
|
| MD5 |
a10d877162a1f417ac13569e51b83956
|
|
| BLAKE2b-256 |
06196e11838f252b6ec5dbe3ac13b8abd167c3d00cf8ed8896bf6e26167b1417
|
File details
Details for the file hs_tasnet-0.1.31-py3-none-any.whl.
File metadata
- Download URL: hs_tasnet-0.1.31-py3-none-any.whl
- Upload date:
- Size: 15.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.23
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
55ac6b97092bb554376556a87eb2fb7e6255b51be05345a01c47c94b1138638e
|
|
| MD5 |
6d985782972fcf11c4e383b393e06875
|
|
| BLAKE2b-256 |
9b480e062a3d62723d92b8dfa0b1380d50ac012caed5e84c740642365a4ad119
|