|
import os |
|
|
|
if __name__ == '__main__': |
|
|
|
os.system("pip install -e .") |
|
|
|
|
|
os.system("curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash") |
|
|
|
|
|
os.system("source ~/.bashrc") |
|
|
|
|
|
os.system("nvm install v18.16.0") |
|
|
|
print("nvm installed OK.") |
|
|
|
|
|
os.system("curl -fsSL https://get.pnpm.io/install.sh | sh -") |
|
|
|
|
|
os.system("source ~/.bashrc") |
|
|
|
|
|
os.system("pnpm --version") |
|
|
|
print("pnpm installed OK.") |
|
|
|
|
|
os.system("git clone https://github.com/chencn2020/gradio-bbox.git") |
|
|
|
|
|
os.system("cd gradio-bbox") |
|
|
|
|
|
os.system("bash scripts/build_frontend.sh") |
|
|
|
|
|
os.system("cd ..") |
|
|
|
import argparse |
|
from demo.UI import Main_ui |
|
|
|
parser = argparse.ArgumentParser(description='SEAGULL', formatter_class=argparse.RawTextHelpFormatter) |
|
parser.add_argument('--model', help='path to seagull model', default='Zevin2023/SEAGULL-7B') |
|
parser.add_argument('--example_path', help='path to examples', default='./imgs/Examples') |
|
args = parser.parse_args() |
|
|
|
demo = Main_ui(args).load_demo() |
|
demo.launch() |