Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,15 +1,20 @@
|
|
1 |
-
|
2 |
-
import
|
3 |
|
4 |
-
|
|
|
5 |
|
6 |
-
|
7 |
-
|
|
|
8 |
|
9 |
-
|
10 |
-
|
|
|
|
|
|
|
|
|
|
|
11 |
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
print(f"video generated and saved as {video_path}")
|
|
|
1 |
+
import gradio as gr
|
2 |
+
from transformers import DiffusionPipeline
|
3 |
|
4 |
+
# Load the pre-trained Diffusion model from Hugging Face
|
5 |
+
pipeline = DiffusionPipeline.from_pretrained("THUDM/CogVideoX-5b-I2V")
|
6 |
|
7 |
+
def generate_image(prompt):
|
8 |
+
image = pipeline(prompt)["sample"][0]
|
9 |
+
return image
|
10 |
|
11 |
+
iface = gr.Interface(
|
12 |
+
fn=generate_image,
|
13 |
+
inputs=gr.Textbox(label="Enter your prompt"),
|
14 |
+
outputs=gr.Image(type="pil"),
|
15 |
+
title="Diffusion Model Image Generator",
|
16 |
+
description="Enter a prompt to generate an image using the DiffusionPipeline from Hugging Face."
|
17 |
+
)
|
18 |
|
19 |
+
if __name__ == "__main__":
|
20 |
+
iface.launch()
|
|
|
|