Spaces:
Running
Running
Fabio Grasso
commited on
Commit
ยท
8001894
1
Parent(s):
c5d5e1b
docs: update readme
Browse files
README.md
CHANGED
@@ -8,3 +8,30 @@ pinned: true
|
|
8 |
---
|
9 |
|
10 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
---
|
9 |
|
10 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
11 |
+
|
12 |
+
# Music Source Splitter ๐ถ
|
13 |
+
<a href="https://huggingface.co/spaces/fabiogra/st-music-splitter"><img src="https://img.shields.io/badge/๐ค%20Hugging%20Face-Spaces-blue" alt="Hugging Face Spaces"></a>
|
14 |
+
|
15 |
+
|
16 |
+
This is a streamlit demo of the [Music Source Separation](https://huggingface.co/spaces/fabiogra/st-music-splitter).
|
17 |
+
|
18 |
+
The model can separate the vocals, drums, bass, and other from a music track.
|
19 |
+
|
20 |
+
## Usage
|
21 |
+
|
22 |
+
You can use the demo [here](https://huggingface.co/spaces/fabiogra/st-music-splitter), or run it locally with:
|
23 |
+
|
24 |
+
```bash
|
25 |
+
streamlit run app.py
|
26 |
+
```
|
27 |
+
> **Note**: In order to run the demo locally, you need to install the dependencies with `pip install -r requirements.txt`.
|
28 |
+
|
29 |
+
|
30 |
+
## How it works
|
31 |
+
|
32 |
+
The app uses a pretrained model called Hybrid Spectrogram and Waveform Source Separation from <a href="https://github.com/facebookresearch/demucs">facebook/htdemucs</a>.
|
33 |
+
|
34 |
+
|
35 |
+
## Acknowledgements
|
36 |
+
- HtDemucs model from <a href="https://github.com/facebookresearch/demucs">facebook/htdemucs</a>
|
37 |
+
- Streamlit Audio Recorder from <a href="https://github.com/stefanrmmr/streamlit_audio_recorder">stefanrmmr/streamlit_audio_recorder</a>
|