{"id":24617712,"url":"https://github.com/jacoblincool/zero-rvc","last_synced_at":"2025-07-18T01:36:47.380Z","repository":{"id":248313054,"uuid":"827491675","full_name":"JacobLinCool/zero-rvc","owner":"JacobLinCool","description":"Run Retrieval-based Voice Conversion training and inference with ease.","archived":false,"fork":false,"pushed_at":"2025-01-24T21:18:36.000Z","size":119,"stargazers_count":11,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-15T01:19:31.344Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://pypi.org/project/zerorvc","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JacobLinCool.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-11T18:48:26.000Z","updated_at":"2025-03-04T18:00:50.000Z","dependencies_parsed_at":"2024-07-13T22:47:17.025Z","dependency_job_id":null,"html_url":"https://github.com/JacobLinCool/zero-rvc","commit_stats":null,"previous_names":["jacoblincool/zero-rvc"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JacobLinCool%2Fzero-rvc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JacobLinCool%2Fzero-rvc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JacobLinCool%2Fzero-rvc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JacobLinCool%2Fzero-rvc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JacobLinCool","download_url":"https://codeload.github.com/JacobLinCool/zero-rvc/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252819638,"owners_count":21809057,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-01-24T23:40:06.105Z","updated_at":"2025-05-07T05:24:52.697Z","avatar_url":"https://github.com/JacobLinCool.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ZeroRVC\n\nRun Retrieval-based Voice Conversion training and inference with ease.\n\n## Features\n\n- [x] Dataset Preparation\n- [x] Hugging Face Datasets Integration\n- [x] Hugging Face Accelerate Integration\n- [x] Trainer API\n- [x] Inference API\n  - [ ] Index Support\n- [x] Tensorboard Support\n- [ ] FP16 Support\n\n## Dataset Preparation\n\nZeroRVC provides a simple API to prepare your dataset for training. You only need to provide the path to your audio files. The feature extraction models will be downloaded automatically, or you can provide your own with the `hubert` and `rmvpe` arguments.\n\n```py\nfrom datasets import load_dataset\nfrom zerorvc import prepare, RVCTrainer\n\ndataset = load_dataset(\"my-audio-dataset\")\ndataset = prepare(dataset)\n\ntrainer = RVCTrainer(\n    \"my-rvc-model\",\n    dataset_train=dataset[\"train\"],\n    dataset_test=dataset[\"test\"],\n)\ntrainer.train(epochs=100, batch_size=8, upload=\"someone/rvc-test-1\")\n```\n\n## Inference\n\nZeroRVC provides an easy API to convert your voice with the trained model.\n\n```py\nfrom zerorvc import RVC\nimport soundfile as sf\n\nrvc = RVC.from_pretrained(\"someone/rvc-test-1\")\nsamples = rvc.convert(\"test.mp3\")\nsf.write(\"output.wav\", samples, rvc.sr)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjacoblincool%2Fzero-rvc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjacoblincool%2Fzero-rvc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjacoblincool%2Fzero-rvc/lists"}