mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-10-05 16:48:03 +08:00
fix top_p_candidates and support separate setting of sampling params for mtp (#4189)
Some checks failed
CE Compile Job / ce_job_pre_check (push) Has been cancelled
CE Compile Job / print_ce_job_pre_check_outputs (push) Has been cancelled
CE Compile Job / FD-Clone-Linux (push) Has been cancelled
CE Compile Job / Show Code Archive Output (push) Has been cancelled
CE Compile Job / BUILD_SM8090 (push) Has been cancelled
CE Compile Job / BUILD_SM8689 (push) Has been cancelled
CE Compile Job / CE_UPLOAD (push) Has been cancelled
Some checks failed
CE Compile Job / ce_job_pre_check (push) Has been cancelled
CE Compile Job / print_ce_job_pre_check_outputs (push) Has been cancelled
CE Compile Job / FD-Clone-Linux (push) Has been cancelled
CE Compile Job / Show Code Archive Output (push) Has been cancelled
CE Compile Job / BUILD_SM8090 (push) Has been cancelled
CE Compile Job / BUILD_SM8689 (push) Has been cancelled
CE Compile Job / CE_UPLOAD (push) Has been cancelled
* fix top_p_candidates * For separate setting params for mtp * delete print * fix
This commit is contained in:
@@ -303,8 +303,16 @@ class MTPProposer(Proposer):
|
||||
)
|
||||
# self.model_inputs["caches"] = self.cache_kvs
|
||||
# Inherit generation hyperparameters from the main model for consistency
|
||||
self.model_inputs["top_p"] = self.target_model_inputs["top_p"]
|
||||
self.model_inputs["top_k"] = self.target_model_inputs["top_k"]
|
||||
self.model_inputs["top_p"] = (
|
||||
self.target_model_inputs["top_p"]
|
||||
if envs.FD_SPECULATE_SAMPLING_TOP_P is None
|
||||
else paddle.full_like(self.target_model_inputs["top_p"], envs.FD_SPECULATE_SAMPLING_TOP_P)
|
||||
)
|
||||
self.model_inputs["top_k"] = (
|
||||
self.target_model_inputs["top_k"]
|
||||
if envs.FD_SPECULATE_SAMPLING_TOP_K is None
|
||||
else paddle.full_like(self.target_model_inputs["top_k"], envs.FD_SPECULATE_SAMPLING_TOP_K)
|
||||
)
|
||||
self.model_inputs["temperature"] = self.target_model_inputs["temperature"]
|
||||
self.model_inputs["eos_token_id"] = self.target_model_inputs["eos_token_id"]
|
||||
self.model_inputs["penalty_score"] = self.target_model_inputs["penalty_score"]
|
||||
|
Reference in New Issue
Block a user