aet_demo / hifigan /__init__.py
saeki
fix
e23163d
raw
history blame contribute delete
179 Bytes
from .models import Generator
class AttrDict(dict):
def __init__(self, *args, **kwargs):
super(AttrDict, self).__init__(*args, **kwargs)
self.__dict__ = self