We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 487aabf commit aeca83bCopy full SHA for aeca83b
train.py
@@ -73,7 +73,7 @@ def _map_fn_train(img):
73
def train():
74
G = get_G((batch_size, 96, 96, 3))
75
D = get_D((batch_size, 384, 384, 3))
76
- VGG = tl.models.vgg19(pretrained=False, end_with='pool4', mode='static')
+ VGG = tl.models.vgg19(pretrained=True, end_with='pool4', mode='static')
77
78
lr_v = tf.Variable(lr_init)
79
g_optimizer_init = tf.optimizers.Adam(lr_v, beta_1=beta1)
0 commit comments