Files
GPT-SoVITS/GPT_SoVITS/BigVGAN/env.py
T
2026-07-22 16:20:45 +08:00

9 lines
268 B
Python

# Adapted from https://github.com/jik876/hifi-gan under the MIT license.
# LICENSE is in the incl_licenses directory.
class AttrDict(dict):
def __init__(self, *args, **kwargs):
super(AttrDict, self).__init__(*args, **kwargs)
self.__dict__ = self