lun0tic-j commited on
Commit
398effa
·
verified ·
1 Parent(s): 941ce71

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -42,5 +42,5 @@ def detect_and_correct_pose(image):
42
  return "운동 종류를 인식할 수 없습니다."
43
 
44
  # Gradio 인터페이스 정의
45
- input_image = gr.inputs.Image
46
  gr.Interface(detect_and_correct_pose, input_image, "text").launch()
 
42
  return "운동 종류를 인식할 수 없습니다."
43
 
44
  # Gradio 인터페이스 정의
45
+ input_image = gr.inputs.Image(shape=(224, 224))
46
  gr.Interface(detect_and_correct_pose, input_image, "text").launch()