File size: 642 Bytes
379d988 75deb81 2ec7173 |
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 |
---
language:
- bn
tags:
- rvc
- voice-conversion
- audio
- singing
- voice-cloning
library_name: rvc
pipeline_tag: audio-to-audio
---
# NeilModel - RVC Voice Model
এটি একটি Retrieval-based Voice Conversion (RVC) মডেল।
## Model Files
- `G_2333333.pth` - Generator model (146 MB)
- `D_2333333.pth` - Discriminator model (286 MB)
- `config.json` - Model configuration
## Usage
### Python দিয়ে:
```python
from huggingface_hub import hf_hub_download
import torch
model_path = hf_hub_download(
repo_id="rubelhok/NeilModel",
filename="G_2333333.pth"
)
model = torch.load(model_path, map_location='cpu') |