mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-22 16:17:57 +01:00
35 lines
637 B
Markdown
35 lines
637 B
Markdown
# Generation parameters
|
|
|
|
For a description of the generation parameters provided by the transformers library, see this link: https://huggingface.co/docs/transformers/main_classes/text_generation#transformers.GenerationConfig
|
|
|
|
### llama.cpp
|
|
|
|
llama.cpp only uses the following parameters:
|
|
|
|
* temperature
|
|
* top_p
|
|
* top_k
|
|
* repetition_penalty
|
|
* tfs
|
|
* mirostat_mode
|
|
* mirostat_tau
|
|
* mirostat_eta
|
|
|
|
### ExLlama
|
|
|
|
ExLlama only uses the following parameters:
|
|
|
|
* temperature
|
|
* top_p
|
|
* top_k
|
|
* repetition_penalty
|
|
* typical_p
|
|
|
|
### RWKV
|
|
|
|
RWKV only uses the following parameters when loaded through the old .pth weights:
|
|
|
|
* temperature
|
|
* top_p
|
|
* top_k
|