Add requirements.txt for dependencies
Browse files- requirements.txt +15 -0
requirements.txt
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core Python libraries for handling HTTP requests and image processing
|
| 2 |
+
requests>=2.26.0
|
| 3 |
+
Pillow>=9.0.0
|
| 4 |
+
|
| 5 |
+
# Hugging Face Transformers library for model handling
|
| 6 |
+
transformers>=4.30.0
|
| 7 |
+
|
| 8 |
+
# PyTorch for model execution (CPU or GPU)
|
| 9 |
+
torch>=1.13.0
|
| 10 |
+
|
| 11 |
+
# Add any additional libraries required for Hugging Face pipelines
|
| 12 |
+
accelerate>=0.17.0
|
| 13 |
+
|
| 14 |
+
# Optional for debugging and logging during development
|
| 15 |
+
loguru>=0.6.0
|