Commit
·
498ebf4
1
Parent(s):
36be800
Update app.py
Browse files
app.py
CHANGED
@@ -98,11 +98,11 @@ with gr.Blocks() as demo:
|
|
98 |
gr.Markdown('''# Community demo for Stable Video Diffusion - Img2Vid - XT ([model](https://huggingface.co/stabilityai/stable-video-diffusion-img2vid-xt), [paper](https://stability.ai/research/stable-video-diffusion-scaling-latent-video-diffusion-models-to-large-datasets), [stability's ui waitlist](https://stability.ai/contact))
|
99 |
#### Research release ([_non-commercial_](https://huggingface.co/stabilityai/stable-video-diffusion-img2vid-xt/blob/main/LICENSE)): generate `4s` vid from a single image at (`25 frames` at `6 fps`). this demo uses [🧨 diffusers for low VRAM and fast generation](https://huggingface.co/docs/diffusers/main/en/using-diffusers/svd).
|
100 |
''')
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
with gr.Row():
|
107 |
with gr.Column():
|
108 |
image = gr.Image(label="Upload your image", type="pil")
|
|
|
98 |
gr.Markdown('''# Community demo for Stable Video Diffusion - Img2Vid - XT ([model](https://huggingface.co/stabilityai/stable-video-diffusion-img2vid-xt), [paper](https://stability.ai/research/stable-video-diffusion-scaling-latent-video-diffusion-models-to-large-datasets), [stability's ui waitlist](https://stability.ai/contact))
|
99 |
#### Research release ([_non-commercial_](https://huggingface.co/stabilityai/stable-video-diffusion-img2vid-xt/blob/main/LICENSE)): generate `4s` vid from a single image at (`25 frames` at `6 fps`). this demo uses [🧨 diffusers for low VRAM and fast generation](https://huggingface.co/docs/diffusers/main/en/using-diffusers/svd).
|
100 |
''')
|
101 |
+
secret_token = gr.Text(
|
102 |
+
label='Secret Token',
|
103 |
+
max_lines=1,
|
104 |
+
placeholder='Enter your secret token',
|
105 |
+
)
|
106 |
with gr.Row():
|
107 |
with gr.Column():
|
108 |
image = gr.Image(label="Upload your image", type="pil")
|