Commit
•
1976186
1
Parent(s):
c98ab1a
Update handler.py
Browse files- handler.py +1 -1
handler.py
CHANGED
@@ -265,7 +265,7 @@ class EndpointHandler:
|
|
265 |
num_inference_steps=params.get("num_inference_steps", GenerationConfig.num_inference_steps),
|
266 |
|
267 |
# reproducible generation settings
|
268 |
-
seed=params.get("seed", GenerationConfig.seed)
|
269 |
|
270 |
# varnish settings (will be used for post-processing after the raw video clip has been generated)
|
271 |
fps=params.get("fps", GenerationConfig.fps), # FPS of the final video (only applied at the the very end, when converting to mp4)
|
|
|
265 |
num_inference_steps=params.get("num_inference_steps", GenerationConfig.num_inference_steps),
|
266 |
|
267 |
# reproducible generation settings
|
268 |
+
seed=params.get("seed", GenerationConfig.seed),
|
269 |
|
270 |
# varnish settings (will be used for post-processing after the raw video clip has been generated)
|
271 |
fps=params.get("fps", GenerationConfig.fps), # FPS of the final video (only applied at the the very end, when converting to mp4)
|