diff options
Diffstat (limited to 'model.py')
-rw-r--r-- | model.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -76,7 +76,7 @@ class YourModel(tf.keras.Model): # style target is the second output of the vgg16 mode, the Gram Matrix of the style layers self.style_target = self.vgg16(img_to_np(style_image))[1] - # here for convention - here is the forward pass + # here for convention - this is the forward pass def call(self, x): # call only onto our created model x = self.vgg16(x * 255) |