jadechoghari's picture
add model
9b9e0ee verified
raw
history blame
No virus
239 Bytes
from .models_hifires import Generator_HiFiRes
from .models import Generator as Generator
class AttrDict(dict):
def __init__(self, *args, **kwargs):
super(AttrDict, self).__init__(*args, **kwargs)
self.__dict__ = self