yellowdolphin commited on
Commit
79e7d41
·
1 Parent(s): d8877a5

import numpy

Browse files
Files changed (2) hide show
  1. app.py +1 -0
  2. utils.py +1 -0
app.py CHANGED
@@ -16,6 +16,7 @@ import json
16
  import gradio as gr
17
  from huggingface_hub import hf_hub_download
18
  from yolov5 import detect
 
19
  from utils import get_model, get_cfg, get_embeddings, get_comp_embeddings, get_test_embedding
20
 
21
 
 
16
  import gradio as gr
17
  from huggingface_hub import hf_hub_download
18
  from yolov5 import detect
19
+ import numpy as np
20
  from utils import get_model, get_cfg, get_embeddings, get_comp_embeddings, get_test_embedding
21
 
22
 
utils.py CHANGED
@@ -1,5 +1,6 @@
1
  import math
2
 
 
3
  import tensorflow as tf
4
  import tfimm
5
  import efficientnet
 
1
  import math
2
 
3
+ import numpy as np
4
  import tensorflow as tf
5
  import tfimm
6
  import efficientnet