Spaces:
Sleeping
Sleeping
Add TF and HF Hub dependancies
Browse files- .gitignore +11 -0
- pyproject.toml +3 -1
- requirements.txt +3 -1
- uv.lock +0 -0
.gitignore
CHANGED
|
@@ -205,3 +205,14 @@ cython_debug/
|
|
| 205 |
marimo/_static/
|
| 206 |
marimo/_lsp/
|
| 207 |
__marimo__/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 205 |
marimo/_static/
|
| 206 |
marimo/_lsp/
|
| 207 |
__marimo__/
|
| 208 |
+
|
| 209 |
+
# Model cache directories
|
| 210 |
+
models/
|
| 211 |
+
.cache/
|
| 212 |
+
*.h5
|
| 213 |
+
*.keras
|
| 214 |
+
*.pb
|
| 215 |
+
*.tflite
|
| 216 |
+
|
| 217 |
+
# HuggingFace cache
|
| 218 |
+
.huggingface/
|
pyproject.toml
CHANGED
|
@@ -1,13 +1,15 @@
|
|
| 1 |
[project]
|
| 2 |
name = "asl-hand-detection"
|
| 3 |
version = "0.1.0"
|
| 4 |
-
description = "
|
| 5 |
requires-python = ">=3.10,<3.13"
|
| 6 |
dependencies = [
|
| 7 |
"gradio>=4.0.0",
|
| 8 |
"mediapipe==0.10.9",
|
| 9 |
"opencv-python-headless>=4.9.0",
|
| 10 |
"numpy>=1.24.3",
|
|
|
|
|
|
|
| 11 |
]
|
| 12 |
|
| 13 |
[tool.hatch.build.targets.wheel]
|
|
|
|
| 1 |
[project]
|
| 2 |
name = "asl-hand-detection"
|
| 3 |
version = "0.1.0"
|
| 4 |
+
description = "ASL hand detection system using MediaPipe, EfficientNet, and Gradio"
|
| 5 |
requires-python = ">=3.10,<3.13"
|
| 6 |
dependencies = [
|
| 7 |
"gradio>=4.0.0",
|
| 8 |
"mediapipe==0.10.9",
|
| 9 |
"opencv-python-headless>=4.9.0",
|
| 10 |
"numpy>=1.24.3",
|
| 11 |
+
"tensorflow>=2.13.0",
|
| 12 |
+
"huggingface-hub>=0.19.0",
|
| 13 |
]
|
| 14 |
|
| 15 |
[tool.hatch.build.targets.wheel]
|
requirements.txt
CHANGED
|
@@ -1,4 +1,6 @@
|
|
| 1 |
gradio>=4.0.0
|
| 2 |
mediapipe==0.10.9
|
| 3 |
opencv-python-headless>=4.9.0
|
| 4 |
-
numpy>=1.24.3
|
|
|
|
|
|
|
|
|
| 1 |
gradio>=4.0.0
|
| 2 |
mediapipe==0.10.9
|
| 3 |
opencv-python-headless>=4.9.0
|
| 4 |
+
numpy>=1.24.3
|
| 5 |
+
tensorflow>=2.13.0
|
| 6 |
+
huggingface-hub>=0.19.0
|
uv.lock
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|