Spaces:
Paused
Paused
Add project page link and update default toggle values for prompt enhancement
Browse files
app.py
CHANGED
|
@@ -445,6 +445,9 @@ with gr.Blocks(theme=gr.themes.Soft()) as iface:
|
|
| 445 |
<a href="https://huggingface.co/Lightricks">
|
| 446 |
<img src="https://huggingface.co/datasets/huggingface/badges/resolve/main/follow-me-on-HF-sm-dark.svg" alt="Follow me on HF">
|
| 447 |
</a>
|
|
|
|
|
|
|
|
|
|
| 448 |
</div>
|
| 449 |
"""
|
| 450 |
)
|
|
@@ -490,7 +493,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as iface:
|
|
| 490 |
)
|
| 491 |
txt2vid_enhance_toggle = Toggle(
|
| 492 |
label="Enhance Prompt",
|
| 493 |
-
value=
|
| 494 |
interactive=True,
|
| 495 |
)
|
| 496 |
|
|
@@ -565,7 +568,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as iface:
|
|
| 565 |
)
|
| 566 |
img2vid_enhance_toggle = Toggle(
|
| 567 |
label="Enhance Prompt",
|
| 568 |
-
value=
|
| 569 |
interactive=True,
|
| 570 |
)
|
| 571 |
img2vid_negative_prompt = gr.Textbox(
|
|
|
|
| 445 |
<a href="https://huggingface.co/Lightricks">
|
| 446 |
<img src="https://huggingface.co/datasets/huggingface/badges/resolve/main/follow-me-on-HF-sm-dark.svg" alt="Follow me on HF">
|
| 447 |
</a>
|
| 448 |
+
<a href="https://huggingface.co/Lightricks">
|
| 449 |
+
<img src="https://img.shields.io/badge/Project-Page-blue" alt="Follow me on HF">
|
| 450 |
+
</a>
|
| 451 |
</div>
|
| 452 |
"""
|
| 453 |
)
|
|
|
|
| 493 |
)
|
| 494 |
txt2vid_enhance_toggle = Toggle(
|
| 495 |
label="Enhance Prompt",
|
| 496 |
+
value=False,
|
| 497 |
interactive=True,
|
| 498 |
)
|
| 499 |
|
|
|
|
| 568 |
)
|
| 569 |
img2vid_enhance_toggle = Toggle(
|
| 570 |
label="Enhance Prompt",
|
| 571 |
+
value=False,
|
| 572 |
interactive=True,
|
| 573 |
)
|
| 574 |
img2vid_negative_prompt = gr.Textbox(
|