Spaces:
Running
on
Zero
Running
on
Zero
A newer version of the Gradio SDK is available:
5.5.0
20240121 Update
- Added
is_share
to theconfig
. In scenarios like Colab, this can be set toTrue
to map the WebUI to the public network. - Added English system translation support to WebUI.
- The
cmd-asr
automatically detects if the FunASR model is included; if not found in the default directory, it will be downloaded from ModelScope. - Attempted to fix the SoVITS training ZeroDivisionError reported in Issue 79 by filtering samples with zero length, etc.
- Cleaned up cached audio files and other files in the
TEMP
folder. - Significantly reduced the issue of synthesized audio containing the end of the reference audio.
20240122 Update
- Fixed the issue where excessively short output files resulted in repeating the reference audio.
- Tested native support for English and Japanese training (Japanese training requires the root directory to be free of non-English special characters).
- Improved audio path checking. If an attempt is made to read from an incorrect input path, it will report that the path does not exist instead of an ffmpeg error.
20240123 Update
- Resolved the issue where Hubert extraction caused NaN errors, leading to SoVITS/GPT training ZeroDivisionError.
- Added support for quick model switching in the inference WebUI.
- Optimized the model file sorting logic.
- Replaced
jieba
withjieba_fast
for Chinese word segmentation.
20240126 Update
- Added support for Chinese-English mixed and Japanese-English mixed output texts.
- Added an optional segmentation mode for output.
- Fixed the issue of UVR5 reading and automatically jumping out of directories.
- Fixed multiple newline issues causing inference errors.
- Removed redundant logs in the inference WebUI.
- Supported training and inference on Mac.
- Automatically forced single precision for GPU that do not support half precision; enforced single precision under CPU inference.
20240128 Update
- Fixed the issue with the pronunciation of numbers converting to Chinese characters.
- Fixed the issue of swallowing a few characters at the beginning of sentences.
- Excluded unreasonable reference audio lengths by setting restrictions.
- Fixed the issue where GPT training did not save checkpoints.
- Completed model downloading process in the Dockerfile.
20240129 Update
- Changed training configurations to single precision for GPUs like the 16 series, which have issues with half precision training.
- Tested and updated the available Colab version.
- Fixed the issue of git cloning the ModelScope FunASR repository with older versions of FunASR causing interface misalignment errors.
20240130 Update
- Automatically removed double quotes from all path-related entries to prevent errors from novice users copying paths with double quotes.
- Fixed issues with splitting Chinese and English punctuation and added punctuation at the beginning and end of sentences.
- Added splitting by punctuation.
20240201 Update
- Fixed the UVR5 format reading error causing separation failures.
- Supported automatic segmentation and language recognition for mixed Chinese-Japanese-English texts.
20240202 Update
- Fixed the issue where an ASR path ending with
/
caused an error in saving the filename. - PR 377 introduced PaddleSpeech's Normalizer to fix issues like reading "xx.xx%" (percent symbols) and "元/吨" being read as "元吨" instead of "元每吨", and fixed underscore errors.
20240207 Update
- Corrected language parameter confusion causing decreased Chinese inference quality reported in Issue 391.
- PR 403 adapted UVR5 to higher versions of librosa.
- Commit 14a2851 fixed UVR5 inf everywhere error caused by
is_half
parameter not converting to boolean, resulting in constant half precision inference, which causedinf
on 16 series GPUs. - Optimized English text frontend.
- Fixed Gradio dependencies.
- Supported automatic reading of
.list
full paths if the root directory is left blank during dataset preparation. - Integrated Faster Whisper ASR for Japanese and English.
20240208 Update
- Commit 59f35ad attempted to fix GPT training hang on Windows 10 1909 and Issue 232 (Traditional Chinese System Language).
20240212 Update
- Optimized logic for Faster Whisper and FunASR, switching Faster Whisper to mirror downloads to avoid issues with Hugging Face connections.
- PR 457 enabled experimental DPO Loss training option to mitigate GPT repetition and missing characters by constructing negative samples during training and made several inference parameters available in the inference WebUI.
20240214 Update
- Supported Chinese experiment names in training (previously caused errors).
- Made DPO training an optional feature instead of mandatory. If selected, the batch size is automatically halved. Fixed issues with new parameters not being passed in the inference WebUI.
20240216 Update
- Supported input without reference text.
- Fixed bugs in Chinese frontend reported in Issue 475.
20240221 Update
- Added a noise reduction option during data processing (noise reduction leaves only 16kHz sampling rate; use only if the background noise is significant).
- PR 559, PR 556, PR 532, PR 507, PR 509 optimized Chinese and Japanese frontend processing.
- Switched Mac CPU inference to use CPU instead of MPS for faster performance.
- Fixed Colab public URL issue.
20240306 Update
- PR 672 accelerated inference by 50% (tested on RTX3090 + PyTorch 2.2.1 + CU11.8 + Win10 + Py39) .
- No longer requires downloading the Chinese FunASR model first when using Faster Whisper non-Chinese ASR.
- PR 610 fixed UVR5 reverb removal model where the setting was reversed.
- PR 675 enabled automatic CPU inference for Faster Whisper if no CUDA is available.
- PR 573 modified
is_half
check to ensure proper CPU inference on Mac.
202403/202404/202405 Update
Minor Fixes:
- Fixed issues with the no-reference text mode.
- Optimized the Chinese and English text frontend.
- Improved API format.
- Fixed CMD format issues.
- Added error prompts for unsupported languages during training data processing.
- Fixed the bug in Hubert extraction.
Major Fixes:
- Fixed the issue of SoVITS training without freezing VQ (which could cause quality degradation).
- Added a quick inference branch.
20240610 Update
Minor Fixes:
- PR 1168 & PR 1169 improved the logic for pure punctuation and multi-punctuation text input.
- Commit 501a74a fixed CMD format for MDXNet de-reverb in UVR5, supporting paths with spaces.
- PR 1159 fixed progress bar logic for SoVITS training in
s2_train.py
.
Major Fixes:
- Commit 99f09c8 fixed the issue of WebUI's GPT fine-tuning not reading BERT feature of Chinese input texts, causing inconsistency with inference and potential quality degradation. Caution: If you have previously fine-tuned with a large amount of data, it is recommended to retune the model to improve quality.
20240706 Update
Minor Fixes:
- Commit 1250670 fixed default batch size decimal issue in CPU inference.
- PR 1258, PR 1265, PR 1267 fixed issues where denoising or ASR encountering exceptions would exit all pending audio files.
- PR 1253 fixed the issue of splitting decimals when splitting by punctuation.
- Commit a208698 fixed multi-process save logic for multi-GPU training.
- PR 1251 removed redundant
my_utils
.
Major Fixes:
- The accelerated inference code from PR 672 has been validated and merged into the main branch, ensuring consistent inference effects with the base. It also supports accelerated inference in no-reference text mode.
Future updates will continue to verify the consistency of changes in the fast_inference
branch.
20240727 Update
Minor Fixes:
- PR 1298 cleaned up redundant i18n code.
- PR 1299 fixed issues where trailing slashes in user file paths caused command line errors.
- PR 756 fixed the step calculation logic in GPT training.
Major Fixes:
- Commit 9588a3c supported speech rate adjustment for synthesis. Enabled freezing randomness while only adjusting the speech rate.
20240806 Update
- PR 1306, PR 1356 Added support for the BS RoFormer vocal accompaniment separation model. Commit e62e965 Enabled FP16 inference.
- Improved Chinese text frontend.
- PR 1355 automatically filled in the paths when processing audio in the WebUI.
- Commit bce451a, Commit 4c8b761 optimized GPU recognition logic.
- Commit 8a10147 added support for Cantonese ASR.
- Added support for GPT-SoVITS v2.
- PR 1387 optimized timing logic.