d2j666 commited on
Commit
66cb5e6
·
1 Parent(s): c51d1f1

Add TF and HF Hub dependancies

Browse files
Files changed (4) hide show
  1. .gitignore +11 -0
  2. pyproject.toml +3 -1
  3. requirements.txt +3 -1
  4. 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 = "AAI-521 Final project: Hand detection system using Gradio, CNN (tbd) and MediaPipe"
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