summaryrefslogtreecommitdiff
path: root/models/models.py
blob: 351483c6ace36575c9fe12e3ab8ca6a1df0c9f5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
### Copyright (C) 2017 NVIDIA Corporation. All rights reserved. 
### Licensed under the CC BY-NC-SA 4.0 license (https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode).
import torch

def create_model(opt):
    from .pix2pixHD_model import Pix2PixHDModel
    model = Pix2PixHDModel()    
    model.initialize(opt)
    print("model [%s] was created" % (model.name()))

    if opt.isTrain and len(opt.gpu_ids):
        model = torch.nn.DataParallel(model, device_ids=opt.gpu_ids)

    return model