aboutsummaryrefslogtreecommitdiff
path: root/model.py
diff options
context:
space:
mode:
authorMichael Foiani <sotech117@michaels-mbp-4.devices.brown.edu>2022-05-09 02:02:42 -0400
committerMichael Foiani <sotech117@michaels-mbp-4.devices.brown.edu>2022-05-09 02:02:42 -0400
commitc8386be631f38cde31391124423f77b7479d1bad (patch)
tree3615b99b52fa2f620bc88118bf4aee9e697361bf /model.py
parent13826824ec58e85557efb3a12fb0456ffb20e46d (diff)
added examples and fixed the io for checkpoints
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)