Spaces:
Running
Running
added note about dataset and checkbox info
Browse files
app.py
CHANGED
@@ -86,7 +86,7 @@ with gr.Blocks(theme=theme) as demo:
|
|
86 |
)
|
87 |
|
88 |
upscale_button = gr.Checkbox(
|
89 |
-
label=f"Stretch (If you want to stretch the downloadable output, check
|
90 |
value=False,
|
91 |
)
|
92 |
|
@@ -105,7 +105,7 @@ with gr.Blocks(theme=theme) as demo:
|
|
105 |
with gr.Row():
|
106 |
generate_info = gr.Markdown(
|
107 |
"<p style='text-align: center; font-size: 16px;'>"
|
108 |
-
"
|
109 |
"</p>"
|
110 |
)
|
111 |
|
|
|
86 |
)
|
87 |
|
88 |
upscale_button = gr.Checkbox(
|
89 |
+
label=f"Stretch (If you want to stretch the downloadable output to the input size, check this box, the default output of neural networks is {image_size}x{image_size} )",
|
90 |
value=False,
|
91 |
)
|
92 |
|
|
|
105 |
with gr.Row():
|
106 |
generate_info = gr.Markdown(
|
107 |
"<p style='text-align: center; font-size: 16px;'>"
|
108 |
+
"Notes: Depending on where you run this demo, it might take a while to generate the output. For the HF space it may take up to 20 minutes for 100 sampling steps. We reccomend lowering the sampling steps to 10 for the HF space. Model trained using this <a href='https://huggingface.co/datasets/pawlo2013/anime_diffusion_full'>dataset</a>."
|
109 |
"</p>"
|
110 |
)
|
111 |
|