Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -201,12 +201,10 @@ with gr.Blocks(theme="Yntec/HaleyCH_Theme_Orange", css=css) as demo:
|
|
201 |
with gr.Row():
|
202 |
result = ImageSlider(label="Input / Output", type="pil", interactive=True)
|
203 |
|
204 |
-
|
205 |
-
# Examples 부분만 수정된 코드
|
206 |
examples = gr.Examples(
|
207 |
examples=[
|
208 |
-
[42, False, "
|
209 |
-
[42, False, "
|
210 |
],
|
211 |
inputs=[
|
212 |
seed,
|
@@ -220,6 +218,7 @@ with gr.Blocks(theme="Yntec/HaleyCH_Theme_Orange", css=css) as demo:
|
|
220 |
outputs=result,
|
221 |
cache_examples="lazy",
|
222 |
)
|
|
|
223 |
|
224 |
|
225 |
gr.on(
|
|
|
201 |
with gr.Row():
|
202 |
result = ImageSlider(label="Input / Output", type="pil", interactive=True)
|
203 |
|
|
|
|
|
204 |
examples = gr.Examples(
|
205 |
examples=[
|
206 |
+
[42, False, "z1.webp", 28, 2, 0.6], # 직접 파일명만 사용
|
207 |
+
[42, False, "z2.webp", 28, 2, 0.6], # 직접 파일명만 사용
|
208 |
],
|
209 |
inputs=[
|
210 |
seed,
|
|
|
218 |
outputs=result,
|
219 |
cache_examples="lazy",
|
220 |
)
|
221 |
+
|
222 |
|
223 |
|
224 |
gr.on(
|