Spaces:
Runtime error
Runtime error
File size: 664 Bytes
66158f6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
# 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
* repetition_penalty_range
* typical_p
### RWKV
RWKV only uses the following parameters when loaded through the old .pth weights:
* temperature
* top_p
* top_k
|