georgescutelnicu commited on
Commit
d3d3291
1 Parent(s): 3a86b10

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -57,13 +57,15 @@ example_list = [['content/content1.jpg',
57
 
58
  title = "Neural Style Transfer 🎨"
59
  description = "It will take about 1 minute for the result to be displayed. Since the algorithm runs a small number of epochs (to reduce the waiting time), the result will not always be as good as it should be."
 
60
 
61
  demo = gr.Interface(fn=predict,
62
  inputs=['image', 'image'],
63
  outputs=gr.Image().style(width=256, height=256),
64
  examples=example_list,
65
  title=title,
66
- description=description)
 
67
 
68
 
69
  demo.launch(debug=False,
 
57
 
58
  title = "Neural Style Transfer 🎨"
59
  description = "It will take about 1 minute for the result to be displayed. Since the algorithm runs a small number of epochs (to reduce the waiting time), the result will not always be as good as it should be."
60
+ article = "See the code on [GitHub](https://github.com/georgescutelnicu/Neural-Style-Transfer)."
61
 
62
  demo = gr.Interface(fn=predict,
63
  inputs=['image', 'image'],
64
  outputs=gr.Image().style(width=256, height=256),
65
  examples=example_list,
66
  title=title,
67
+ description=description,
68
+ article=article)
69
 
70
 
71
  demo.launch(debug=False,