Spaces:
Running
Running
Upload folder using huggingface_hub
Browse files- Dockerfile +2 -2
- requirements_space.txt +27 -0
Dockerfile
CHANGED
|
@@ -7,8 +7,8 @@ RUN apt-get update && apt-get install -y \
|
|
| 7 |
|
| 8 |
WORKDIR /app
|
| 9 |
|
| 10 |
-
COPY
|
| 11 |
-
RUN pip install --no-cache-dir -r
|
| 12 |
|
| 13 |
COPY src/ ./src/
|
| 14 |
COPY api/ ./api/
|
|
|
|
| 7 |
|
| 8 |
WORKDIR /app
|
| 9 |
|
| 10 |
+
COPY requirements_space.txt .
|
| 11 |
+
RUN pip install --no-cache-dir -r requirements_space.txt
|
| 12 |
|
| 13 |
COPY src/ ./src/
|
| 14 |
COPY api/ ./api/
|
requirements_space.txt
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
torch==2.1.0
|
| 2 |
+
torchvision==0.16.0
|
| 3 |
+
opencv-python-headless==4.9.0.80
|
| 4 |
+
onnxruntime==1.17.1
|
| 5 |
+
faiss-cpu==1.8.0
|
| 6 |
+
sentence-transformers==2.7.0
|
| 7 |
+
fastapi==0.110.0
|
| 8 |
+
uvicorn[standard]==0.29.0
|
| 9 |
+
python-multipart==0.0.9
|
| 10 |
+
pydantic==2.6.4
|
| 11 |
+
gradio==4.26.0
|
| 12 |
+
networkx==3.3
|
| 13 |
+
pyvis==0.3.2
|
| 14 |
+
shap==0.45.0
|
| 15 |
+
scikit-image==0.22.0
|
| 16 |
+
imagehash==4.3.1
|
| 17 |
+
scipy==1.13.0
|
| 18 |
+
scikit-learn==1.4.2
|
| 19 |
+
numpy==1.26.4
|
| 20 |
+
huggingface_hub==0.22.2
|
| 21 |
+
tenacity==8.2.3
|
| 22 |
+
reportlab==4.1.0
|
| 23 |
+
httpx==0.27.0
|
| 24 |
+
python-dotenv==1.0.1
|
| 25 |
+
joblib==1.4.0
|
| 26 |
+
psutil==5.9.8
|
| 27 |
+
clip @ git+https://github.com/openai/CLIP.git@dcba3cb2e2827b402d2701e7e1d7d17226bb5b9c
|