mattb512 commited on
Commit
bff7e15
1 Parent(s): 0ac9bc7

wait for interactive demo

Browse files
Files changed (1) hide show
  1. startup.sh +3 -3
startup.sh CHANGED
@@ -17,12 +17,12 @@ sleep 30
17
  python -m serve.gradio_web_server --controller http://127.0.0.1:10000 --model-list-mode reload --share &
18
  P2=$!
19
 
20
-
21
- python -m interactive_demo --port 40000 --model_id prism-dinosiglip+7b
22
  # python -m interactive_demo --port 40001 --model_family llava-v15 --model_id llava-v1.5-7b --model_dir liuhaotian/llava-v1.5-7b
23
 
24
  ls -als $HF_HOME
25
  tree --du -h $HF_HOME
26
  nvidia-smi
27
 
28
- wait $P1 $P2
 
17
  python -m serve.gradio_web_server --controller http://127.0.0.1:10000 --model-list-mode reload --share &
18
  P2=$!
19
 
20
+ python -m interactive_demo --port 40000 --model_id prism-dinosiglip+7b &
21
+ P3=$!
22
  # python -m interactive_demo --port 40001 --model_family llava-v15 --model_id llava-v1.5-7b --model_dir liuhaotian/llava-v1.5-7b
23
 
24
  ls -als $HF_HOME
25
  tree --du -h $HF_HOME
26
  nvidia-smi
27
 
28
+ wait $P1 $P2 $P3