Skip to content

Latest commit

 

History

History
executable file
·
21 lines (17 loc) · 564 Bytes

llava_steps.md

File metadata and controls

executable file
·
21 lines (17 loc) · 564 Bytes

Setup LLaVa Models

Build container

cd docker
docker compose build
docker compose up -d
docker exec -it bongard bash

Start server (LLaVA 1.6)

python3 -m sglang.launch_server --model-path liuhaotian/llava-v1.6-34b --tokenizer-path liuhaotian/llava-v1.6-34b-tokenizer --chat-template chatml-llava --port 10000

Start server (LLaVA 1.5)

python3 -m sglang.launch_server --model-path liuhaotian/llava-v1.5-13b --tokenizer-path llava-hf/llava-1.5-13b-hf --port 10000

Open second container shell and execute scripts there.