- 10 Apr, 2025 2 commits
-
-
Lily Liu authored
Signed-off-by:LiuXiaoxuanPKU <lilyliupku@gmail.com>
-
Guillaume Calmettes authored
Signed-off-by:Guillaume Calmettes <gcalmettes@scaleway.com>
-
- 06 Apr, 2025 2 commits
-
-
paolovic authored
Signed-off-by:
paolovic <paul-philipp.luley@uzh.ch> Co-authored-by:
paolovic <paul-philipp.luley@uzh.ch>
-
Isotr0py authored
Signed-off-by:Isotr0py <2037008807@qq.com>
-
- 04 Apr, 2025 1 commit
-
-
Reid authored
Signed-off-by:
reidliu41 <reid201711@gmail.com> Co-authored-by:
reidliu41 <reid201711@gmail.com>
-
- 03 Apr, 2025 1 commit
-
-
yihong authored
Signed-off-by:yihong0618 <zouzou0208@gmail.com>
-
- 30 Mar, 2025 1 commit
-
-
yihong authored
Signed-off-by:yihong0618 <zouzou0208@gmail.com>
-
- 29 Mar, 2025 1 commit
-
-
pengyuange authored
Signed-off-by:
jiacai.liu <932997367@qq.com> Co-authored-by:
jiacai.liu <932997367@qq.com>
-
- 28 Mar, 2025 1 commit
-
-
Kebe authored
Signed-off-by:Kebe <mail@kebe7jun.com>
-
- 27 Mar, 2025 1 commit
-
-
wang.yuqi authored
-
- 26 Mar, 2025 1 commit
-
-
Bryan Lu authored
Signed-off-by:
Bryan Lu <yuzhelu@amazon.com> Co-authored-by:
Cyrus Leung <cyrus.tl.leung@gmail.com>
-
- 21 Mar, 2025 1 commit
-
-
Nick Hill authored
Signed-off-by:Nick Hill <nhill@redhat.com>
-
- 20 Mar, 2025 1 commit
-
-
Wang Ran (汪然) authored
-
- 19 Mar, 2025 1 commit
-
-
Brayden Zhong authored
Signed-off-by:Brayden Zhong <b8zhong@uwaterloo.ca>
-
- 15 Mar, 2025 1 commit
-
-
Rémi Delacourt authored
Signed-off-by:
remi <remi@mistral.ai> Signed-off-by:
DarkLight1337 <tlleungac@connect.ust.hk> Co-authored-by:
DarkLight1337 <tlleungac@connect.ust.hk>
-
- 10 Mar, 2025 1 commit
-
-
Harry Mellor authored
Signed-off-by:Harry Mellor <19981378+hmellor@users.noreply.github.com>
-
- 01 Mar, 2025 1 commit
-
-
Jee Jee Li authored
Signed-off-by:Jee Jee Li <pandaleefree@gmail.com>
-
- 26 Feb, 2025 2 commits
-
-
Florian Greinacher authored
-
Jee Jee Li authored
-
- 25 Feb, 2025 4 commits
-
-
Chen1022 authored
-
Chen1022 authored
Signed-off-by:
Chen-0210 <chenjincong11@gmail.com> Co-authored-by:
Michael Goin <mgoin64@gmail.com>
-
Shanshan Shen authored
-
cjackal authored
Signed-off-by:cjackal <44624812+cjackal@users.noreply.github.com>
-
- 20 Feb, 2025 1 commit
-
-
燃 authored
-
- 19 Feb, 2025 3 commits
-
-
Isotr0py authored
Signed-off-by:isotr0py <2037008807@qq.com>
-
Cyrus Leung authored
Signed-off-by:DarkLight1337 <tlleungac@connect.ust.hk>
-
Kevin H. Luu authored
Signed-off-by: <> Co-authored-by:EC2 Default User <ec2-user@ip-172-31-20-117.us-west-2.compute.internal>
-
- 18 Feb, 2025 1 commit
-
-
Isotr0py authored
-
- 17 Feb, 2025 1 commit
-
-
r.4ntix authored
-
- 12 Feb, 2025 4 commits
-
-
Rafael Vasquez authored
-
Shiyan Deng authored
-
Maximilien de Bayser authored
-
Keyun Tong authored
Signed-off-by:Keyun Tong <tongkeyun@gmail.com>
-
- 11 Feb, 2025 1 commit
-
-
Florian Greinacher authored
Signed-off-by:Florian Greinacher <florian.greinacher@siemens.com>
-
- 10 Feb, 2025 2 commits
-
-
Farzad Abdolhosseini authored
Signed-off-by:Farzad Abdolhosseini <farzad@fixie.ai>
-
Kevin H. Luu authored
-
- 08 Feb, 2025 2 commits
-
-
Patrick von Platen authored
Signed-off-by:
mgoin <mgoin64@gmail.com> Co-authored-by:
mgoin <mgoin64@gmail.com>
-
zifeitong authored
Signed-off-by:
Zifei Tong <zifeitong@gmail.com> Co-authored-by:
Cyrus Leung <cyrus.tl.leung@gmail.com>
-
- 07 Feb, 2025 2 commits
-
-
afeldman-nm authored
This PR is adding support for sample logprobs & prompt logprobs to vLLM v1. New behavior: - During model execution, model runner computes sample logprobs (if user-provided logprobs setting is not None) and prompt logprobs (if user-provided prompt_logprobs setting is not None). For both sample and prompt logprobs, the engine core returns 3 vectors: token ids, token logprob values, token ranks. Ranks reflect tokens' 1-indexed positions in the vocabulary vector after sorting the vocabulary by log probability in descending order. - In scheduler.update_from_output(), sample and prompt logprobs are incorporated into the EngineCoreOutput data structure which is transferred to the engine client. If multiprocessing is enabled, then sample and prompt logprobs will be (de)serialized when the EngineCoreOutput data structure is (de)serialized. - During output processing, the LogprobsProcessor transforms the triplet of token ids, token logprobs values, and token ranks into the OpenAI-compatible List[Dict[token id,Logprob]] format (for sample and prompt logprobs respectively.) - Each Logprob instance (whether sample- or prompt-) consists of a token's log-probability, rank, and detokenized string representation. Note that logprob detokenization is handled by the LogprobsProcessor not the detokenizer. Signed-off-by:
Andrew Feldman <afeldman@neuralmagic.com> Signed-off-by:
Nick Hill <nhill@redhat.com> Signed-off-by:
rshaw@neuralmagic.com <rshaw@neuralmagic.com> Co-authored-by:
rshaw@neuralmagic.com <rshaw@neuralmagic.com> Co-authored-by:
Nick Hill <nhill@redhat.com>
-
Maximilien de Bayser authored
-