MeanVC
A Lightweight and Streaming Zero-Shot Voice Conversion via Mean Flows
File Explorer
- geely_logo.jpg
- meanvc_QR.png
- model.png
- [email protected]
- infer.sh
- infer_ref.sh
- train.sh
- train_dis.sh
- config_160ms.json
- config_200ms.json
- dataset.py
- ecapa_tdnn.py
- run_wer.py
- utils.py
- verification.py
- dit_kvcache.py
- infer.py
- infer_ref.py
- modules.py
- dit.py
- __init__.py
- cfm_mean_flow.py
- dit_discriminator.py
- loss.py
- modules.py
- prompt_vp.py
- trainer.py
- trainer_dis.py
- utils.py
- __init__.py
- ecapa_tdnn.py
- utils.py
- extrace_mel_10ms.py
- extract_bn_160ms.py
- extract_bn_200ms.py
- extract_spk_emb_wavlm.py
- test.wav
- ecapa_tdnn.py
- utils.py
- verification.py
- run_rt.py
- train.py
- train_2.py
- __init__.py
- dataset.py
- discriminators.py
- experiment.py
- feature_extractors.py
- heads.py
- helpers.py
- loss.py
- models.py
- modules.py
- pretrained.py
- spectral_ops.py
- .gitignore
- default_config.yaml
- defaults.ini
- download_ckpt.py
- LICENSE
- README.md
- requirements.txt
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
conda activate
View Details ▼
conda activate
Activate a conda environment.
See also: `conda deactivate`.
conda activate myenv
Activate an existing environment named `myenv`:
conda activate {{path/to/myenv}}
Activate an existing environment located at custom path:
conda activate --stack myenv
Stack `myenv` environment on top of a previous environment making libraries/commands/variables from both accessible:
conda create
View Details ▼
conda create
Create new conda environments.
conda create {{[-y|--yes]}} {{[-n|--name]}} py39 python=3.9 "numpy>=1.11" scipy
Create a new environment named `py39`, install Python 3.9, NumPy v1.11 or above in it, and the latest stable version of SciPy. Say yes to all confirmations:
conda create {{[-n|--name]}} myenv --file {{file1.yml}} --file {{file2.yml}}
Create a new environment named `myenv` and install packages listed in files:
conda create {{[-p|--prefix]}} {{path/to/myenv}}
Create a new environment at a custom path (i.e. prefix):
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
