Unverified Commit c06af9a9 authored by Jee Jee Li's avatar Jee Jee Li Committed by GitHub
Browse files

[Misc] Slight spelling modification (#18039)


Signed-off-by: default avatarJee Jee Li <pandaleefree@gmail.com>
parent 60f76243
...@@ -74,7 +74,7 @@ vLLM is flexible and easy to use with: ...@@ -74,7 +74,7 @@ vLLM is flexible and easy to use with:
- OpenAI-compatible API server - OpenAI-compatible API server
- Support NVIDIA GPUs, AMD CPUs and GPUs, Intel CPUs and GPUs, PowerPC CPUs, TPU, and AWS Neuron. - Support NVIDIA GPUs, AMD CPUs and GPUs, Intel CPUs and GPUs, PowerPC CPUs, TPU, and AWS Neuron.
- Prefix caching support - Prefix caching support
- Multi-lora support - Multi-LoRA support
vLLM seamlessly supports most popular open-source models on HuggingFace, including: vLLM seamlessly supports most popular open-source models on HuggingFace, including:
- Transformer-like LLMs (e.g., Llama) - Transformer-like LLMs (e.g., Llama)
......
...@@ -119,7 +119,7 @@ class LogitsProcessor(nn.Module): ...@@ -119,7 +119,7 @@ class LogitsProcessor(nn.Module):
def extra_repr(self) -> str: def extra_repr(self) -> str:
s = f"vocab_size={self.vocab_size}" s = f"vocab_size={self.vocab_size}"
s += f", forg_vocab_size={self.org_vocab_size}" s += f", org_vocab_size={self.org_vocab_size}"
s += f", scale={self.scale}, logits_as_input={self.logits_as_input}" s += f", scale={self.scale}, logits_as_input={self.logits_as_input}"
return s return s
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment