uploaded requirements.txt file
Browse files- requirements.txt +10 -0
requirements.txt
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
gradio # For creating the interactive web interface
|
| 2 |
+
joblib # For saving and loading the machine learning models
|
| 3 |
+
numpy # For numerical operations
|
| 4 |
+
pandas # For data manipulation and analysis
|
| 5 |
+
scikit-learn # For machine learning algorithms and preprocessing
|
| 6 |
+
matplotlib # For data visualization
|
| 7 |
+
seaborn # For advanced data visualization (optional, but useful for plotting)
|
| 8 |
+
xgboost # If you plan to use the XGBoost model
|
| 9 |
+
lightgbm # If you plan to use the LightGBM model
|
| 10 |
+
tensorflow # If you are using deep learning models
|