CSNLN changes (removed because it doesnt train well)

This commit is contained in:
James Betker 2020-09-08 08:04:16 -06:00
parent f43df7f5f7
commit 146ace0859
2 changed files with 1 additions and 3 deletions

View File

@ -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
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)
elif which_model == "csnln":
import model.csnln as csnln
netG = csnln.CSNLN(munchify(opt_net))
else:
raise NotImplementedError('Generator model [{:s}] not recognized'.format(which_model))

View File

@ -8,3 +8,4 @@ scp
tqdm
matplotlib
scipy
munch