tango2 / audioldm /hifigan /__init__.py
hungchiayu1
initial commit
ffead1e
raw
history blame
No virus
180 Bytes
from .models import Generator
class AttrDict(dict):
def __init__(self, *args, **kwargs):
super(AttrDict, self).__init__(*args, **kwargs)
self.__dict__ = self