Spaces:
Sleeping
Sleeping
Commit
·
3a0d63f
1
Parent(s):
cf6bf05
adding some new files
Browse files- .gitignore +2 -0
- Dockerfile +6 -0
- encoders.pkl +0 -0
- model.pkl +0 -0
- requirements.txt +1 -0
.gitignore
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
.venv
|
| 2 |
+
.venv/
|
Dockerfile
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM python:3.11-slim
|
| 2 |
+
WORKDIR /app
|
| 3 |
+
COPY requirements.txt .
|
| 4 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
| 5 |
+
COPY . .
|
| 6 |
+
CMD ["python", "app.py"]
|
encoders.pkl
ADDED
|
Binary file (631 Bytes). View file
|
|
|
model.pkl
ADDED
|
Binary file (2.2 kB). View file
|
|
|
requirements.txt
CHANGED
|
@@ -2,3 +2,4 @@ scikit-learn==1.3.2
|
|
| 2 |
pandas==2.1.4
|
| 3 |
numpy==1.26.4
|
| 4 |
gradio==4.44.1
|
|
|
|
|
|
| 2 |
pandas==2.1.4
|
| 3 |
numpy==1.26.4
|
| 4 |
gradio==4.44.1
|
| 5 |
+
huggingface_hub==0.36.0
|