Spaces:
brianmg
/
Runtime error

brianmg commited on
Commit
df594e1
β€’
1 Parent(s): 228b5f6
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -111,15 +111,15 @@ def sepia(input_img):
111
  demo = gr.Interface(
112
  fn=sepia,
113
  inputs=gr.Image(shape=(400, 600)),
114
- outputs='plot', # 'plot' λŒ€μ‹  'image'도 μ‚¬μš© κ°€λŠ₯
115
  examples=["22.jpg", "33.jpg"],
116
  allow_flagging='never',
117
  title="201912064 Park MinGyu",
118
  description="sample image - city road",
119
  theme="huggingface",
120
- live=True, # μ‹€μ‹œκ°„ μ—…λ°μ΄νŠΈ ν™œμ„±ν™”
121
- interpretation="default", # λ˜λŠ” 'none'으둜 μ„€μ •ν•˜μ—¬ 해석 κΈ°λŠ₯ λΉ„ν™œμ„±ν™”
122
- layout="horizontal", # 'horizontal' λ˜λŠ” 'vertical'둜 μ„€μ • κ°€λŠ₯
123
  )
124
 
125
 
 
111
  demo = gr.Interface(
112
  fn=sepia,
113
  inputs=gr.Image(shape=(400, 600)),
114
+ outputs='plot',
115
  examples=["22.jpg", "33.jpg"],
116
  allow_flagging='never',
117
  title="201912064 Park MinGyu",
118
  description="sample image - city road",
119
  theme="huggingface",
120
+ live=True,
121
+ interpretation="default",
122
+ layout="horizontal",
123
  )
124
 
125