Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -336,8 +336,12 @@ css = make_progress_bar_css()
|
|
| 336 |
block = gr.Blocks(css=css).queue()
|
| 337 |
with block:
|
| 338 |
gr.Markdown('# FramePack-F1')
|
| 339 |
-
gr.Markdown(
|
| 340 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 341 |
with gr.Row():
|
| 342 |
with gr.Column():
|
| 343 |
input_image = gr.Image(sources='upload', type="numpy", label="Image", height=320)
|
|
|
|
| 336 |
block = gr.Blocks(css=css).queue()
|
| 337 |
with block:
|
| 338 |
gr.Markdown('# FramePack-F1')
|
| 339 |
+
gr.Markdown(f"""### Video diffusion, but feels like image diffusion
|
| 340 |
+
*FramePack F1 - a FramePack model that only predicts future frames from history frames*
|
| 341 |
+
adapted from the officical code repo [FramePack](https://github.com/lllyasviel/FramePack) by lllyasviel and [FramePack Studio](https://github.com/colinurbs/FramePack-Studio)
|
| 342 |
+
""")
|
| 343 |
+
gr.Markdown('*demo FramePack F1 - a FramePack model that only predicts future frames from history frames*')
|
| 344 |
+
gr.Markdown('adapted from the officical code repo [FramePack](https://github.com/lllyasviel/FramePack) by lllyasviel and [FramePack Studio](https://github.com/colinurbs/FramePack-Studio)')
|
| 345 |
with gr.Row():
|
| 346 |
with gr.Column():
|
| 347 |
input_image = gr.Image(sources='upload', type="numpy", label="Image", height=320)
|