Spaces:
Sleeping
Sleeping
Add requirements.txt for dependencies
Browse filesInstall Python dependencies required for the Gradio app:
- gradio: Web interface framework
- pandas: Data manipulation and analysis
- numpy: Numerical computing
- scikit-learn: Machine learning library
- joblib: Model serialization
This will resolve the runtime error and enable the churn prediction demo.
- requirements.txt +5 -0
requirements.txt
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
gradio>=4.0.0
|
2 |
+
pandas>=1.5.0
|
3 |
+
numpy>=1.21.0
|
4 |
+
scikit-learn>=1.1.0
|
5 |
+
joblib>=1.2.0
|