Spaces:
Runtime error
Runtime error
| from .base_model import BaseModel | |
| from .ganimation import GANimationModel | |
| from .stargan import StarGANModel | |
| def create_model(opt): | |
| # specify model name here | |
| if opt.model == "ganimation": | |
| instance = GANimationModel() | |
| elif opt.model == "stargan": | |
| instance = StarGANModel() | |
| else: | |
| instance = BaseModel() | |
| instance.initialize(opt) | |
| instance.setup() | |
| return instance | |