awacke1 commited on
Commit
113de4a
1 Parent(s): d73c0af

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -7,7 +7,7 @@ import gradio as gr
7
  model = Yolov4(weight_path="yolov4.weights", class_name_path='coco_classes.txt')
8
  def gradio_wrapper(img):
9
  global model
10
- print(np.shape(img))
11
  results = model.predict(img)
12
  return results[0]
13
  demo = gr.Interface(
 
7
  model = Yolov4(weight_path="yolov4.weights", class_name_path='coco_classes.txt')
8
  def gradio_wrapper(img):
9
  global model
10
+ #print(np.shape(img))
11
  results = model.predict(img)
12
  return results[0]
13
  demo = gr.Interface(