Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -50,11 +50,11 @@ def infer(image_path, prompt, orbit_type, progress=gr.Progress(track_tqdm=True))
|
|
| 50 |
pipe.to("cuda")
|
| 51 |
|
| 52 |
|
| 53 |
-
prompt = f"
|
| 54 |
image = load_image(image_path)
|
| 55 |
seed = random.randint(0, 2**8 - 1)
|
| 56 |
|
| 57 |
-
video =
|
| 58 |
image,
|
| 59 |
prompt,
|
| 60 |
num_inference_steps=50, # NOT Changed
|
|
|
|
| 50 |
pipe.to("cuda")
|
| 51 |
|
| 52 |
|
| 53 |
+
prompt = f"{prompt}. High quality, ultrarealistic detail and breath-taking movie-like camera shot."
|
| 54 |
image = load_image(image_path)
|
| 55 |
seed = random.randint(0, 2**8 - 1)
|
| 56 |
|
| 57 |
+
video = pipe(
|
| 58 |
image,
|
| 59 |
prompt,
|
| 60 |
num_inference_steps=50, # NOT Changed
|