mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2026-08-13 01:53:43 +08:00
9 lines
268 B
Python
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
|