Upload folder using huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
tags:
|
| 4 |
+
- music
|
| 5 |
+
- mir
|
| 6 |
+
- pitch-estimation
|
| 7 |
+
- mirbox
|
| 8 |
+
library_name: mirbox
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# RMVPE
|
| 12 |
+
|
| 13 |
+
Robust model for vocal pitch estimation.
|
| 14 |
+
|
| 15 |
+
## Usage
|
| 16 |
+
|
| 17 |
+
```python
|
| 18 |
+
from mirbox.pitch import RMVPE
|
| 19 |
+
|
| 20 |
+
model = RMVPE(device="cuda")
|
| 21 |
+
result = model("input.wav")
|
| 22 |
+
print(result["f0"])
|
| 23 |
+
```
|
| 24 |
+
|
| 25 |
+
## Files
|
| 26 |
+
|
| 27 |
+
- `model.pt` — Model weights
|
model.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:19dc1809cf4cdb0a18db93441816bc327e14e5644b72eeaae5220560c6736fe2
|
| 3 |
+
size 368492925
|