aboutsummaryrefslogtreecommitdiff
path: root/model.py
diff options
context:
space:
mode:
Diffstat (limited to 'model.py')
-rw-r--r--model.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/model.py b/model.py
index d8ce4c88..3f1f83f0 100644
--- a/model.py
+++ b/model.py
@@ -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)