CoolFace
Apppublic

lenML/ChatTTS-Forge

sourceHugging Faceagpl-3.0updated 2y agoView on Hugging Face
301likes
hf.py15 linesDownload Raw Back to modules
1# 给huggingface space写的兼容代码2 3try:4    import spaces5except:6 7    class NoneSpaces:8        def __init__(self):9            pass10 11        def GPU(self, fn):12            return fn13 14    spaces = NoneSpaces()15