trysem commited on
Commit
e62a524
·
1 Parent(s): 91726ea

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -86,9 +86,9 @@ def inference(img):
86
  return out
87
 
88
 
89
- title = "Vintage style Pix2PixHD"
90
  description = "Style a face to look more \"Vintage\". Upload an image with a face, or click on one of the examples below. If a face could not be detected, an image will still be created."
91
- article = "<hr><p style='text-align: center'>See the <a href='https://github.com/justinpinkney/pix2pixHD' target='_blank'>Github Repo</a></p><p style='text-align: center'>samples: <img src='https://hf.space/gradioiframe/Norod78/VintageStyle/file/Sample00001.jpg' alt='Sample00001'/><img src='https://hf.space/gradioiframe/Norod78/VintageStyle/file/Sample00002.jpg' alt='Sample00002'/><img src='https://hf.space/gradioiframe/Norod78/VintageStyle/file/Sample00003.jpg' alt='Sample00003'/><img src='https://hf.space/gradioiframe/Norod78/VintageStyle/file/Sample00004.jpg' alt='Sample00004'/><img src='https://hf.space/gradioiframe/Norod78/VintageStyle/file/Sample00005.jpg' alt='Sample00005'/></p><p>The \"Vintage Style\" Pix2PixHD model was trained by <a href='https://linktr.ee/Norod78' target='_blank'>Doron Adler</a></p>"
92
 
93
  examples=[['Example00001.jpg'],['Example00002.jpg'],['Example00003.jpg'],['Example00004.jpg'],['Example00005.jpg'], ['Example00006.jpg']]
94
  gr.Interface(
@@ -98,7 +98,7 @@ gr.Interface(
98
  title=title,
99
  description=description,
100
  article=article,
101
- examples=examples,
102
  enable_queue=True,
103
  allow_flagging=False
104
  ).launch()
 
86
  return out
87
 
88
 
89
+ title = "VintageStyle AI"
90
  description = "Style a face to look more \"Vintage\". Upload an image with a face, or click on one of the examples below. If a face could not be detected, an image will still be created."
91
+ article = ""
92
 
93
  examples=[['Example00001.jpg'],['Example00002.jpg'],['Example00003.jpg'],['Example00004.jpg'],['Example00005.jpg'], ['Example00006.jpg']]
94
  gr.Interface(
 
98
  title=title,
99
  description=description,
100
  article=article,
101
+ css="footer{visibility:hidden}"
102
  enable_queue=True,
103
  allow_flagging=False
104
  ).launch()