Phuong Anh commited on
Commit
2ca6de4
1 Parent(s): d6204ee

Rewrite requirements

Browse files
Files changed (1) hide show
  1. requirements.txt +8 -4
requirements.txt CHANGED
@@ -1,7 +1,11 @@
1
  gradio==3.30.0
 
2
  opencv-python-headless==4.7.0.72 # OpenCV for image processing (headless for better compatibility with Hugging Face)
3
  numpy==1.23.0
4
- huggingface-hub==0.14.1 # For downloading models from Hugging Face
5
- anomalib==0.2.0 # If you're using Anomalib for anomaly detection
6
- torch==1.13.1 # If your model was trained with PyTorch
7
- openvino==2022.3.0 # OpenVINO runtime for inference
 
 
 
 
1
  gradio==3.30.0
2
+ torch==1.13.1 # If your model uses PyTorch
3
  opencv-python-headless==4.7.0.72 # OpenCV for image processing (headless for better compatibility with Hugging Face)
4
  numpy==1.23.0
5
+ anomalib==0.2.0 # For anomaly detection
6
+ huggingface-hub==0.14.1 # For model uploading and interaction with Hugging Face
7
+ openvino==2022.3.0 # OpenVINO for model inference
8
+ Pillow==9.2.0 # PIL for image manipulation
9
+ matplotlib==3.5.3 # For plotting, if needed
10
+ gdown==4.4.0 # For downloading from Google Drive (if necessary)
11
+ loguru==0.6.0 # For logging (optional)