wzc2334234 commited on
Commit
86acba5
1 Parent(s): 4de9398

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -41,6 +41,8 @@ HEADER = """
41
  3. Otherwise, please disable "Remove Background" option only if your input image is RGBA with transparent background, image contents are centered and occupy more than 70% of image width or height.
42
  """
43
 
44
- gr.Markdown(HEADER)
 
 
45
  iface = gr.Interface(fn=greet, inputs="text", outputs="text")
46
  iface.launch()
 
41
  3. Otherwise, please disable "Remove Background" option only if your input image is RGBA with transparent background, image contents are centered and occupy more than 70% of image width or height.
42
  """
43
 
44
+ with gr.Blocks() as demo:
45
+ gr.Markdown(HEADER)
46
+
47
  iface = gr.Interface(fn=greet, inputs="text", outputs="text")
48
  iface.launch()