openfree commited on
Commit
d7656d7
Β·
verified Β·
1 Parent(s): 287ead4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
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,