Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files- DockerFile +2 -1
- requirements.txt +9 -9
DockerFile
CHANGED
|
@@ -34,4 +34,5 @@ WORKDIR $HOME/app
|
|
| 34 |
COPY --chown=user . $HOME/app
|
| 35 |
|
| 36 |
# Run Streamlit app
|
| 37 |
-
CMD ["streamlit",
|
|
|
|
|
|
| 34 |
COPY --chown=user . $HOME/app
|
| 35 |
|
| 36 |
# Run Streamlit app
|
| 37 |
+
CMD ["streamlit","run","app.py","--server.port=8501","--server.address=0.0.0.0","--server.enableXsrfProtection=false"]
|
| 38 |
+
|
requirements.txt
CHANGED
|
@@ -1,10 +1,10 @@
|
|
| 1 |
-
numpy
|
| 2 |
-
pandas
|
| 3 |
-
scikit-learn
|
| 4 |
-
xgboost
|
| 5 |
-
mlflow
|
| 6 |
requests>=2.32.2,<3
|
| 7 |
-
streamlit
|
| 8 |
-
joblib
|
| 9 |
-
huggingface_hub
|
| 10 |
-
datasets
|
|
|
|
| 1 |
+
numpy==1.26.4
|
| 2 |
+
pandas==2.2.2
|
| 3 |
+
scikit-learn==1.6.0
|
| 4 |
+
xgboost==2.1.4
|
| 5 |
+
mlflow==3.0.1
|
| 6 |
requests>=2.32.2,<3
|
| 7 |
+
streamlit==1.44.0
|
| 8 |
+
joblib==1.3.2
|
| 9 |
+
huggingface_hub==0.32.6
|
| 10 |
+
datasets==3.6.0
|