Spaces:
Sleeping
Sleeping
Update Gradio version for better compatibility with HF Spaces
Browse files- requirements.txt +5 -2
requirements.txt
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
# Dependencies for Hugging Face Space - Phishing Detection App
|
| 2 |
-
#
|
| 3 |
|
| 4 |
# Core app framework with compatible huggingface_hub version
|
| 5 |
gradio==4.44.0
|
|
@@ -8,15 +8,18 @@ huggingface_hub>=0.19.0,<0.20.0
|
|
| 8 |
# ML and Data (matching pyproject.toml versions)
|
| 9 |
scikit-learn>=1.8.0
|
| 10 |
pandas>=2.1.0,<2.2.0
|
|
|
|
|
|
|
| 11 |
|
| 12 |
# Hopsworks integration
|
| 13 |
hopsworks==4.2.*
|
|
|
|
| 14 |
|
| 15 |
# URLScan integration
|
| 16 |
requests>=2.32.5
|
| 17 |
python-dotenv>=1.0.0
|
| 18 |
|
| 19 |
-
# Model serialization
|
| 20 |
joblib>=1.3.0
|
| 21 |
|
| 22 |
# Additional dependencies (from pyproject.toml)
|
|
|
|
| 1 |
# Dependencies for Hugging Face Space - Phishing Detection App
|
| 2 |
+
# Includes all dependencies from pyproject.toml needed for the app
|
| 3 |
|
| 4 |
# Core app framework with compatible huggingface_hub version
|
| 5 |
gradio==4.44.0
|
|
|
|
| 8 |
# ML and Data (matching pyproject.toml versions)
|
| 9 |
scikit-learn>=1.8.0
|
| 10 |
pandas>=2.1.0,<2.2.0
|
| 11 |
+
matplotlib>=3.10.8
|
| 12 |
+
seaborn>=0.13.2
|
| 13 |
|
| 14 |
# Hopsworks integration
|
| 15 |
hopsworks==4.2.*
|
| 16 |
+
confluent-kafka>=2.3.0
|
| 17 |
|
| 18 |
# URLScan integration
|
| 19 |
requests>=2.32.5
|
| 20 |
python-dotenv>=1.0.0
|
| 21 |
|
| 22 |
+
# Model serialization
|
| 23 |
joblib>=1.3.0
|
| 24 |
|
| 25 |
# Additional dependencies (from pyproject.toml)
|