Spaces:
Runtime error
Runtime error
superlabs-jinwoo
commited on
Commit
·
03ef41d
1
Parent(s):
fc0e2c4
Add runner
Browse files
app.py
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
|
3 |
+
os.system(f"git clone https://github.com/Curt-Park/yolo-world-with-efficientvit-sam.git")
|
4 |
+
cwd0 = os.getcwd()
|
5 |
+
cwd1 = os.path.join(cwd0, "yolo-world-with-efficientvit-sam")
|
6 |
+
os.chdir(cwd1)
|
7 |
+
os.system("pip install -r requirements.txt")
|
8 |
+
os.system("python app.py")
|