Skip to content

Commit

Permalink
Sep reqs for darwin & linux systems
Browse files Browse the repository at this point in the history
  • Loading branch information
SamSamhuns committed Feb 27, 2024
1 parent f8178d7 commit 4279c9d
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
3 changes: 2 additions & 1 deletion face_detection_and_extraction/requirements/blazeface.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
onnx==1.15.0
onnx-simplifier==0.4.35
onnxruntime==1.17.1
torch==2.2.1
torch==2.2.1; sys_platform == 'darwin'
torch==2.1.2; sys_platform == 'linux'
6 changes: 4 additions & 2 deletions face_detection_and_extraction/requirements/mobile_facenet.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
-r common.txt
torch==2.2.1
torchvision==0.17.1
torch==2.2.1; sys_platform == 'darwin'
torch==2.1.2; sys_platform == 'linux'
torchvision==0.17.1; sys_platform == 'darwin'
torchvision==0.16.2; sys_platform == 'linux'
onnx==1.15.0
onnx-simplifier==0.4.35
onnxruntime==1.17.1
3 changes: 2 additions & 1 deletion face_detection_and_extraction/requirements/mtcnn.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-r common.txt
mtcnn==0.1.1
tensorflow==2.15.0
tensorflow==2.15.0; sys_platform == 'darwin'
tensorflow==2.13.1; sys_platform == 'linux'
6 changes: 4 additions & 2 deletions face_detection_and_extraction/requirements/yolov5-face.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,7 @@ PyYAML==6.0.1
requests==2.31.0
seaborn==0.13.2
thop==0.1.1.post2209072238
torch==2.2.1
torchvision==0.17.1
torch==2.2.1; sys_platform == 'darwin'
torch==2.1.2; sys_platform == 'linux'
torchvision==0.17.1; sys_platform == 'darwin'
torchvision==0.16.2; sys_platform == 'linux'
3 changes: 2 additions & 1 deletion similar_face_filtering/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
tensorflow==2.15.0
tensorflow==2.15.0; sys_platform == 'darwin'
tensorflow==2.13.1; sys_platform == 'linux'
numpy

0 comments on commit 4279c9d

Please sign in to comment.