CoolFace
Apppublic

lenML/ChatTTS-Forge

sourceHugging Faceagpl-3.0updated 2y agoView on Hugging Face
301likes
ignore_warn.py10 linesDownload Raw Back to utils
1import warnings2 3 4def ignore_useless_warnings():5 6    # NOTE: 因为触发位置在 `vocos/heads.py:60` 改不动...所以忽略7    warnings.filterwarnings(8        "ignore", category=UserWarning, message="ComplexHalf support is experimental"9    )10