mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-22 08:07:56 +01:00
Add information about presets to the UI
This commit is contained in:
parent
373555c4fb
commit
55457549cd
@ -150,4 +150,8 @@ button {
|
|||||||
|
|
||||||
.checkboxgroup-table div {
|
.checkboxgroup-table div {
|
||||||
display: grid !important;
|
display: grid !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.markdown ul ol {
|
||||||
|
font-size: 100% !important;
|
||||||
}
|
}
|
@ -23,6 +23,7 @@ ExLlama only uses the following parameters:
|
|||||||
* top_p
|
* top_p
|
||||||
* top_k
|
* top_k
|
||||||
* repetition_penalty
|
* repetition_penalty
|
||||||
|
* repetition_penalty_range
|
||||||
* typical_p
|
* typical_p
|
||||||
|
|
||||||
### RWKV
|
### RWKV
|
||||||
|
19
server.py
19
server.py
@ -356,6 +356,25 @@ def create_settings_menus(default_preset):
|
|||||||
|
|
||||||
For a technical description of the parameters, the [transformers documentation](https://huggingface.co/docs/transformers/main_classes/text_generation#transformers.GenerationConfig) is a good reference.
|
For a technical description of the parameters, the [transformers documentation](https://huggingface.co/docs/transformers/main_classes/text_generation#transformers.GenerationConfig) is a good reference.
|
||||||
|
|
||||||
|
The best presets, according to the [Preset Arena](https://github.com/oobabooga/oobabooga.github.io/blob/main/arena/results.md) experiment, are:
|
||||||
|
|
||||||
|
* Instruction following:
|
||||||
|
1) Divine Intellect
|
||||||
|
2) Big O
|
||||||
|
3) simple-1
|
||||||
|
4) Space Alien
|
||||||
|
5) StarChat
|
||||||
|
6) Titanic
|
||||||
|
7) tfs-with-top-a
|
||||||
|
8) Asterism
|
||||||
|
9) Contrastive Search
|
||||||
|
|
||||||
|
* Chat:
|
||||||
|
1) Midnight Enigma
|
||||||
|
2) Yara
|
||||||
|
3) Shortwave
|
||||||
|
4) Kobold-Godlike
|
||||||
|
|
||||||
### Temperature
|
### Temperature
|
||||||
Primary factor to control randomness of outputs. 0 = deterministic (only the most likely token is used). Higher value = more randomness.
|
Primary factor to control randomness of outputs. 0 = deterministic (only the most likely token is used). Higher value = more randomness.
|
||||||
### top_p
|
### top_p
|
||||||
|
Loading…
Reference in New Issue
Block a user