Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +3 -2
requirements.txt
CHANGED
@@ -1,7 +1,8 @@
|
|
1 |
torch>=1.12.0 # Ensure you're using a compatible version of PyTorch
|
2 |
-
ultralytics #
|
3 |
transformers # For Hugging Face model loading (if needed)
|
4 |
streamlit # For the web application interface
|
5 |
opencv-python # For image processing (if used)
|
6 |
numpy # For numerical operations (often used with image data)
|
7 |
-
Pillow # For image handling
|
|
|
|
1 |
torch>=1.12.0 # Ensure you're using a compatible version of PyTorch
|
2 |
+
ultralytics==8.0.0 # Specify the version of the Ultralytics YOLO library you're using
|
3 |
transformers # For Hugging Face model loading (if needed)
|
4 |
streamlit # For the web application interface
|
5 |
opencv-python # For image processing (if used)
|
6 |
numpy # For numerical operations (often used with image data)
|
7 |
+
Pillow # For image handling
|
8 |
+
huggingface-hub==0.14.0 # Include the Hugging Face Hub library for model downloading
|