CoolFace
Apppublic

lenML/ChatTTS-Forge

sourceHugging Faceagpl-3.0updated 2y agoView on Hugging Face
301likes
hf.py21 linesDownload Raw Back to utils
1# 给huggingface space写的兼容代码2 3try:4    import spaces5 6    is_spaces_env = True7except:8 9    class NoneSpaces:10        def __init__(self):11            pass12 13        def GPU(self, *args, **kwargs):14            def _GPU(func):15                return func16 17            return _GPU18 19    spaces = NoneSpaces()20    is_spaces_env = False21