File size: 310 Bytes
0e3e7cd b96e6ec 590da30 b96e6ec 98d7c93 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import spaces
import sys
import os
os.system(f"git clone https://github.com/Curt-Park/yolo-world-with-efficientvit-sam.git")
cwd0 = os.getcwd()
cwd1 = os.path.join(cwd0, "yolo-world-with-efficientvit-sam")
os.chdir(cwd1)
os.system("make setup")
os.system(f"cd /home/user/app")
os.system("python app2.py")
|