Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -283,7 +283,7 @@ def preset_changed(preset):
|
|
283 |
gr.update(visible=False),
|
284 |
gr.update(visible=False),
|
285 |
]
|
286 |
-
|
287 |
def generate_video_from_text(
|
288 |
prompt,
|
289 |
enhance_prompt_toggle,
|
@@ -297,6 +297,11 @@ def generate_video_from_text(
|
|
297 |
num_frames,
|
298 |
progress=gr.Progress(),
|
299 |
):
|
|
|
|
|
|
|
|
|
|
|
300 |
if len(prompt.strip()) < 50:
|
301 |
raise gr.Error(
|
302 |
"ν둬ννΈλ μ΅μ 50μ μ΄μμ΄μ΄μΌ ν©λλ€. λ μμΈν μ€λͺ
μ μ 곡ν΄μ£ΌμΈμ.",
|
@@ -320,6 +325,8 @@ def generate_video_from_text(
|
|
320 |
num_inference_steps = num_inference_steps or 41
|
321 |
guidance_scale = guidance_scale or 4.0
|
322 |
|
|
|
|
|
323 |
sample = {
|
324 |
"prompt": prompt,
|
325 |
"prompt_attention_mask": None,
|
|
|
283 |
gr.update(visible=False),
|
284 |
gr.update(visible=False),
|
285 |
]
|
286 |
+
|
287 |
def generate_video_from_text(
|
288 |
prompt,
|
289 |
enhance_prompt_toggle,
|
|
|
297 |
num_frames,
|
298 |
progress=gr.Progress(),
|
299 |
):
|
300 |
+
# State κ°μ²΄μ value κ°μ κ°μ Έμ΄
|
301 |
+
height = height.value if isinstance(height, gr.State) else height
|
302 |
+
width = width.value if isinstance(width, gr.State) else width
|
303 |
+
num_frames = num_frames.value if isinstance(num_frames, gr.State) else num_frames
|
304 |
+
|
305 |
if len(prompt.strip()) < 50:
|
306 |
raise gr.Error(
|
307 |
"ν둬ννΈλ μ΅μ 50μ μ΄μμ΄μ΄μΌ ν©λλ€. λ μμΈν μ€λͺ
μ μ 곡ν΄μ£ΌμΈμ.",
|
|
|
325 |
num_inference_steps = num_inference_steps or 41
|
326 |
guidance_scale = guidance_scale or 4.0
|
327 |
|
328 |
+
|
329 |
+
|
330 |
sample = {
|
331 |
"prompt": prompt,
|
332 |
"prompt_attention_mask": None,
|