fffiloni commited on
Commit
f57c553
1 Parent(s): 70f2266

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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"A{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_image(
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