gauthamk commited on
Commit
b6c68a3
1 Parent(s): 56b9061

Remove unused imports

Browse files
Files changed (2) hide show
  1. functions.py +0 -2
  2. requirements.txt +4 -0
functions.py CHANGED
@@ -1,7 +1,5 @@
1
  import numpy as np
2
- import cv2
3
  import onnxruntime as rt
4
- from PIL import Image
5
 
6
  onnx_path = 'model/model.onnx'
7
 
 
1
  import numpy as np
 
2
  import onnxruntime as rt
 
3
 
4
  onnx_path = 'model/model.onnx'
5
 
requirements.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ #Requirements for huggingface spaces
2
+ numpy==1.23.5
3
+ onnxruntime==1.13.1
4
+ Pillow==9.3.0