nightfury commited on
Commit
92fbc04
1 Parent(s): 8d8f758

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -9
app.py CHANGED
@@ -60,15 +60,16 @@ examples=[
60
 
61
 
62
  #interface =
63
- gr.Interface(
64
- gr.inputs.Image(type="pil"),
65
- gr.outputs.Image(type="pil"),
66
- title=title,
67
- description=description,
68
- article=article,
69
- examples=examples,
70
- allow_flagging=False,
71
- allow_screenshot=False
 
72
  ).launch(enable_queue=True,cache_examples=True)
73
 
74
  """
 
60
 
61
 
62
  #interface =
63
+ gr.Interface(
64
+ inference,
65
+ gr.inputs.Image(type="pil"),
66
+ gr.outputs.Image(type="pil"),
67
+ title=title,
68
+ description=description,
69
+ article=article,
70
+ examples=examples,
71
+ allow_flagging=False,
72
+ allow_screenshot=False
73
  ).launch(enable_queue=True,cache_examples=True)
74
 
75
  """