Hemanth-Thaluru commited on
Commit
2d3253d
1 Parent(s): 359970a

Article added

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -36,13 +36,16 @@ Title="""
36
  </p>
37
  </div>
38
  """
 
 
 
39
 
40
  iface = gr.Interface(
41
  fn=my_func_predict,
42
  inputs=gr.Image(shape=(256,256)),
43
  outputs='image',
44
  title=Title,
45
- article='Presentation demo project',
46
  examples=['Flower.jpeg','Kid.jpeg','Place.jpeg']
47
  )
48
  iface.launch()
 
36
  </p>
37
  </div>
38
  """
39
+ Article="""
40
+ This is our presentation demosite, Check out our other works [here](https://hemanth-thaluru.github.io/portfolio/).
41
+ """
42
 
43
  iface = gr.Interface(
44
  fn=my_func_predict,
45
  inputs=gr.Image(shape=(256,256)),
46
  outputs='image',
47
  title=Title,
48
+ article=Article,
49
  examples=['Flower.jpeg','Kid.jpeg','Place.jpeg']
50
  )
51
  iface.launch()