Spaces:
Running
Running
gavinyuan
commited on
Commit
·
89d7501
1
Parent(s):
20a8355
add: PIPNet make.sh when started
Browse files
third_party/PIPNet/lib/tools.py
CHANGED
|
@@ -5,10 +5,10 @@ import os
|
|
| 5 |
|
| 6 |
def make_pipnet():
|
| 7 |
cmds = [
|
| 8 |
-
"cd ./third_party/PIPNet/FaceBoxesV2/utils/nms/"
|
| 9 |
-
"chmod +x make.sh"
|
| 10 |
-
"bash ./make.sh"
|
| 11 |
-
"cd -"
|
| 12 |
]
|
| 13 |
for cmd in cmds:
|
| 14 |
os.system(cmd)
|
|
|
|
| 5 |
|
| 6 |
def make_pipnet():
|
| 7 |
cmds = [
|
| 8 |
+
"cd ./third_party/PIPNet/FaceBoxesV2/utils/nms/",
|
| 9 |
+
"chmod +x make.sh",
|
| 10 |
+
"bash ./make.sh",
|
| 11 |
+
"cd -",
|
| 12 |
]
|
| 13 |
for cmd in cmds:
|
| 14 |
os.system(cmd)
|