Update app.py
Browse files
app.py
CHANGED
|
@@ -71,7 +71,6 @@ examples = [
|
|
| 71 |
with gr.Blocks(css=css) as demo:
|
| 72 |
with gr.Column(elem_id="col-container"):
|
| 73 |
gr.Markdown("# GIF Generator with FLUX-dev")
|
| 74 |
-
gr.Markdown("# forked from @multimodalart <3")
|
| 75 |
gr.Markdown("For better results include a description of the motion in your prompt")
|
| 76 |
with gr.Row():
|
| 77 |
prompt = gr.Text(label="Prompt", show_label=False, max_lines=1, placeholder="Enter your prompt")
|
|
@@ -119,5 +118,6 @@ with gr.Blocks(css=css) as demo:
|
|
| 119 |
inputs=[prompt, seed, randomize_seed, guidance_scale, num_inference_steps],
|
| 120 |
outputs = [output, output_stills, seed]
|
| 121 |
)
|
|
|
|
| 122 |
|
| 123 |
demo.launch()
|
|
|
|
| 71 |
with gr.Blocks(css=css) as demo:
|
| 72 |
with gr.Column(elem_id="col-container"):
|
| 73 |
gr.Markdown("# GIF Generator with FLUX-dev")
|
|
|
|
| 74 |
gr.Markdown("For better results include a description of the motion in your prompt")
|
| 75 |
with gr.Row():
|
| 76 |
prompt = gr.Text(label="Prompt", show_label=False, max_lines=1, placeholder="Enter your prompt")
|
|
|
|
| 118 |
inputs=[prompt, seed, randomize_seed, guidance_scale, num_inference_steps],
|
| 119 |
outputs = [output, output_stills, seed]
|
| 120 |
)
|
| 121 |
+
gr.Markdown("Forked from lovely @multimodalart <3")
|
| 122 |
|
| 123 |
demo.launch()
|