Update app.py
Browse files
app.py
CHANGED
@@ -82,7 +82,7 @@ paragraph2 = '<p><strong>Training</strong>:<br />The model was trained with a fe
|
|
82 |
# article=article,enable_queue=True, examples=[["example.jpg"], ["example_2.jpg"], ["example_3.jpg"]], cache_examples=False)
|
83 |
paragraph3 = '<p><strong>Try it out:</strong><br />To use it, simply upload your image and click 'submit', or click one of the examples to load them.<br /><em>(because this is running on the free cpu tier, it will take about 40 secs before you see a result)</em></p><p> </p><p>Have fun 😎</p><p>Toon Beerten</p>'
|
84 |
|
85 |
-
css = "#inp {height: auto !important; width: 100% !important;}"
|
86 |
# css = "@media screen and (max-width: 600px) { .output_image, .input_image {height:20rem !important; width: 100% !important;} }"
|
87 |
# css = ".output_image, .input_image {height: 600px !important}"
|
88 |
|
@@ -105,7 +105,7 @@ with gr.Blocks(css=css) as demo:
|
|
105 |
with gr.Row().style(equal_height=True,height=200,rounded=False):
|
106 |
with gr.Column(scale=1):
|
107 |
img2 = gr.Image("drinking.gif",label=' ',visible=False).style(rounded=True)
|
108 |
-
with gr.Column(scale=
|
109 |
btn = gr.Button("↓ Extract ↓")
|
110 |
with gr.Column(scale=1):
|
111 |
img3 = gr.Image("snowangel.gif",label=' ',visible=False).style(rounded=True)
|
|
|
82 |
# article=article,enable_queue=True, examples=[["example.jpg"], ["example_2.jpg"], ["example_3.jpg"]], cache_examples=False)
|
83 |
paragraph3 = '<p><strong>Try it out:</strong><br />To use it, simply upload your image and click 'submit', or click one of the examples to load them.<br /><em>(because this is running on the free cpu tier, it will take about 40 secs before you see a result)</em></p><p> </p><p>Have fun 😎</p><p>Toon Beerten</p>'
|
84 |
|
85 |
+
css = "#inp {height: auto !important; width: 100% !important;} .gradio-container {background-color: grey}"
|
86 |
# css = "@media screen and (max-width: 600px) { .output_image, .input_image {height:20rem !important; width: 100% !important;} }"
|
87 |
# css = ".output_image, .input_image {height: 600px !important}"
|
88 |
|
|
|
105 |
with gr.Row().style(equal_height=True,height=200,rounded=False):
|
106 |
with gr.Column(scale=1):
|
107 |
img2 = gr.Image("drinking.gif",label=' ',visible=False).style(rounded=True)
|
108 |
+
with gr.Column(scale=4):
|
109 |
btn = gr.Button("↓ Extract ↓")
|
110 |
with gr.Column(scale=1):
|
111 |
img3 = gr.Image("snowangel.gif",label=' ',visible=False).style(rounded=True)
|