Views
No views yet
| Checkpoint | Download | Vision Encoder | LLM | MMBench |
|---|---|---|---|---|
| KarmaVLM-Qwen1.5-0_5B | 🤗 / 🤖 | openai/clip-vit-large-patch14-336 | Qwen/Qwen1.5-0.5B | 53.5 |
git clone https://github.com/X-D-Lab/KarmaVLM.git
cd KarmaVLM
conda create -n karmavlm python=3.10 -y
conda activate karmavlm
pip install --upgrade pip # enable PEP 660 support
pip install -e .
pip install -e ".[train]"
pip install flash-attn --no-build-isolationpython -m llava.serve.cli \
--model-path /path/to/karmavlm/model \
--model-type qwen \
--image-file /path/to/the/test/imagepython -m llava.serve.gradio_web_server \
--controller http://localhost:10000 \
--model-list-mode reload
--share ##(optional)python -m llava.serve.model_worker \
--host 0.0.0.0 \
--controller http://localhost:10000 \
--port 40000 \
--worker http://localhost:40000 \
--model-path /path/to/karmavlm/model \
--model-type qwen