mirror of
https://github.com/kvcache-ai/ktransformers.git
synced 2025-09-10 15:29:39 +00:00
Merge pull request #759 from 3wweiweiwu/fix_top_p_typo
fix typo for top_p
This commit is contained in:
commit
48b9800790
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ class KTransformersInterface(TransformersInterface):
|
||||||
generation_config = GenerationConfig(
|
generation_config = GenerationConfig(
|
||||||
max_length=args.max_new_tokens,
|
max_length=args.max_new_tokens,
|
||||||
temperature=args.temperature,
|
temperature=args.temperature,
|
||||||
top_p=args.temperature,
|
top_p=args.top_p,
|
||||||
do_sample=True
|
do_sample=True
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue