luca-martial commited on
Commit
7800a02
·
1 Parent(s): 3b40214

update image links

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -21,7 +21,7 @@ def stylize(content_image, style_image):
21
  stylized_image = hub_model(tf.constant(content_image), tf.constant(style_image))[0]
22
  return tensor_to_image(stylized_image)
23
 
24
- examples =[["Paris.jpeg"], ["Aristotle.jpeg"], ["Dali.jpeg"], ["Van Gogh.jpeg"]]
25
  title = "Fast Neural Style Transfer using TF-Hub"
26
  description = "Demo for neural style transfer using the pretrained Arbitrary Image Stylization model from TensorFlow Hub."
27
 
 
21
  stylized_image = hub_model(tf.constant(content_image), tf.constant(style_image))[0]
22
  return tensor_to_image(stylized_image)
23
 
24
+ examples =[["example_paris.jpeg"], ["example_aristotle.jpeg"], ["example_dali.jpeg"], ["example_vangogh.jpeg"]]
25
  title = "Fast Neural Style Transfer using TF-Hub"
26
  description = "Demo for neural style transfer using the pretrained Arbitrary Image Stylization model from TensorFlow Hub."
27