| --- |
| 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') |