drbinna commited on
Commit
48ea5f6
·
verified ·
1 Parent(s): 67c4367

Add requirements.txt for dependencies

Browse files

Install 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.

Files changed (1) hide show
  1. 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