diff options
author | Michael Foiani <sotech117@michaels-mbp-4.devices.brown.edu> | 2022-05-09 02:02:42 -0400 |
---|---|---|
committer | Michael Foiani <sotech117@michaels-mbp-4.devices.brown.edu> | 2022-05-09 02:02:42 -0400 |
commit | c8386be631f38cde31391124423f77b7479d1bad (patch) | |
tree | 3615b99b52fa2f620bc88118bf4aee9e697361bf /model.py | |
parent | 13826824ec58e85557efb3a12fb0456ffb20e46d (diff) |
added examples and fixed the io for checkpoints
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) |