CSNLN changes (removed because it doesnt train well)
This commit is contained in:
parent
f43df7f5f7
commit
146ace0859
|
@ -59,9 +59,6 @@ def define_G(opt, net_key='network_G', scale=None):
|
||||||
xforms = opt_net['num_transforms'] if 'num_transforms' in opt_net.keys() else 8
|
xforms = opt_net['num_transforms'] if 'num_transforms' in opt_net.keys() else 8
|
||||||
netG = spsr.SwitchedSpsrWithRef2(in_nc=3, out_nc=3, nf=opt_net['nf'], xforms=xforms, upscale=opt_net['scale'],
|
netG = spsr.SwitchedSpsrWithRef2(in_nc=3, out_nc=3, nf=opt_net['nf'], xforms=xforms, upscale=opt_net['scale'],
|
||||||
init_temperature=opt_net['temperature'] if 'temperature' in opt_net.keys() else 10)
|
init_temperature=opt_net['temperature'] if 'temperature' in opt_net.keys() else 10)
|
||||||
elif which_model == "csnln":
|
|
||||||
import model.csnln as csnln
|
|
||||||
netG = csnln.CSNLN(munchify(opt_net))
|
|
||||||
else:
|
else:
|
||||||
raise NotImplementedError('Generator model [{:s}] not recognized'.format(which_model))
|
raise NotImplementedError('Generator model [{:s}] not recognized'.format(which_model))
|
||||||
|
|
||||||
|
|
|
@ -8,3 +8,4 @@ scp
|
||||||
tqdm
|
tqdm
|
||||||
matplotlib
|
matplotlib
|
||||||
scipy
|
scipy
|
||||||
|
munch
|
||||||
|
|
Loading…
Reference in New Issue
Block a user