Hexii commited on
Commit
6958554
1 Parent(s): 753fb0a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -58,7 +58,7 @@ content_input = gr.inputs.Image(label="Upload an image to which you want the sty
58
  style_input = gr.inputs.Image( label="Upload Style Image ",shape= (256,256), )
59
  style_slider = gr.inputs.Slider(0,2,label="Adjust Style Density" ,default=1,)
60
  content_slider = gr.inputs.Slider(1,5,label="Content Sharpness" ,default=1,)
61
- style_checkbox = gr.Checkbox(value=False,label="Tune Style(experimental)")
62
 
63
 
64
  examples = [
@@ -71,7 +71,8 @@ interface = gr.Interface(fn=style_transfer,
71
  style_input,
72
  style_slider ,
73
  content_slider,
74
- style_checkbox],
 
75
  outputs=gr.outputs.Image(),
76
  title=title,
77
  description=description,
 
58
  style_input = gr.inputs.Image( label="Upload Style Image ",shape= (256,256), )
59
  style_slider = gr.inputs.Slider(0,2,label="Adjust Style Density" ,default=1,)
60
  content_slider = gr.inputs.Slider(1,5,label="Content Sharpness" ,default=1,)
61
+ # style_checkbox = gr.Checkbox(value=False,label="Tune Style(experimental)")
62
 
63
 
64
  examples = [
 
71
  style_input,
72
  style_slider ,
73
  content_slider,
74
+ # style_checkbox
75
+ ],
76
  outputs=gr.outputs.Image(),
77
  title=title,
78
  description=description,