liang2kl commited on
Commit
2b8657c
·
verified ·
1 Parent(s): 4ee5735

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +11 -2
README.md CHANGED
@@ -49,14 +49,23 @@ python -m paroquant.cli.chat --model z-lab/gemma-4-31B-it-PARO
49
 
50
  ### OpenAI-Compatible API Server
51
 
 
 
52
  ```bash
53
- python -m paroquant.cli.serve --model z-lab/gemma-4-31B-it-PARO --port 8000
54
  ```
55
 
56
- For vLLM, the arguments are passed to the vLLM server directly. See [vLLM docs](https://docs.vllm.ai/en/latest/configuration/serve_args/) for more details.
 
 
 
 
57
 
58
  For MLX, add `--vlm` if you wish to load the VLM components and use the model's multimodal features. For vLLM, VLM components are loaded by default and can be skipped with the server argument `--language-model-only`.
59
 
 
 
 
60
  ### Docker (NVIDIA GPU)
61
 
62
  > [!NOTE]
 
49
 
50
  ### OpenAI-Compatible API Server
51
 
52
+ For vLLM, you can directly use `vllm serve` to serve ParoQuant models:
53
+
54
  ```bash
55
+ vllm serve $MODEL --port 8000
56
  ```
57
 
58
+ For other frameworks:
59
+
60
+ ```bash
61
+ python -m paroquant.cli.serve --model $MODEL --port 8000
62
+ ```
63
 
64
  For MLX, add `--vlm` if you wish to load the VLM components and use the model's multimodal features. For vLLM, VLM components are loaded by default and can be skipped with the server argument `--language-model-only`.
65
 
66
+ > [!NOTE]
67
+ > The visual components in this checkpoint is stored in original precision, and only the language components are quantized to 4 bits; as a result, the model size is larger than a fully-quantized model. Avoid loading the VLM components if you are not using the multimodal features for the best efficiency.
68
+
69
  ### Docker (NVIDIA GPU)
70
 
71
  > [!NOTE]