bugfix
Browse files
app.py
CHANGED
|
@@ -14,7 +14,7 @@ pipeline_text2image = AutoPipelineForText2Image.from_pretrained("stabilityai/sdx
|
|
| 14 |
pipeline_image2image = AutoPipelineForImage2Image.from_pipe(pipeline_text2image).to("cuda")
|
| 15 |
pipeline_text2image = pipeline_text2image.to("cuda")
|
| 16 |
|
| 17 |
-
def image2video(image,seed="",fps=7,outfile="")
|
| 18 |
if seed=="":
|
| 19 |
seed=random.randint(0, 5000)
|
| 20 |
|
|
|
|
| 14 |
pipeline_image2image = AutoPipelineForImage2Image.from_pipe(pipeline_text2image).to("cuda")
|
| 15 |
pipeline_text2image = pipeline_text2image.to("cuda")
|
| 16 |
|
| 17 |
+
def image2video(image,seed="",fps=7,outfile=""):
|
| 18 |
if seed=="":
|
| 19 |
seed=random.randint(0, 5000)
|
| 20 |
|