mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-12-24 13:28:59 +01:00
Add tfs and top_a to the API examples
This commit is contained in:
parent
b6c407f51d
commit
486ddd62df
@ -39,6 +39,8 @@ async def run(user_input, history):
|
|||||||
'typical_p': 1,
|
'typical_p': 1,
|
||||||
'epsilon_cutoff': 0, # In units of 1e-4
|
'epsilon_cutoff': 0, # In units of 1e-4
|
||||||
'eta_cutoff': 0, # In units of 1e-4
|
'eta_cutoff': 0, # In units of 1e-4
|
||||||
|
'tfs': 1,
|
||||||
|
'top_a': 0,
|
||||||
'repetition_penalty': 1.18,
|
'repetition_penalty': 1.18,
|
||||||
'top_k': 40,
|
'top_k': 40,
|
||||||
'min_length': 0,
|
'min_length': 0,
|
||||||
|
@ -33,6 +33,8 @@ def run(user_input, history):
|
|||||||
'typical_p': 1,
|
'typical_p': 1,
|
||||||
'epsilon_cutoff': 0, # In units of 1e-4
|
'epsilon_cutoff': 0, # In units of 1e-4
|
||||||
'eta_cutoff': 0, # In units of 1e-4
|
'eta_cutoff': 0, # In units of 1e-4
|
||||||
|
'tfs': 1,
|
||||||
|
'top_a': 0,
|
||||||
'repetition_penalty': 1.18,
|
'repetition_penalty': 1.18,
|
||||||
'top_k': 40,
|
'top_k': 40,
|
||||||
'min_length': 0,
|
'min_length': 0,
|
||||||
|
@ -26,6 +26,8 @@ async def run(context):
|
|||||||
'typical_p': 1,
|
'typical_p': 1,
|
||||||
'epsilon_cutoff': 0, # In units of 1e-4
|
'epsilon_cutoff': 0, # In units of 1e-4
|
||||||
'eta_cutoff': 0, # In units of 1e-4
|
'eta_cutoff': 0, # In units of 1e-4
|
||||||
|
'tfs': 1,
|
||||||
|
'top_a': 0,
|
||||||
'repetition_penalty': 1.18,
|
'repetition_penalty': 1.18,
|
||||||
'top_k': 40,
|
'top_k': 40,
|
||||||
'min_length': 0,
|
'min_length': 0,
|
||||||
|
@ -18,6 +18,8 @@ def run(prompt):
|
|||||||
'typical_p': 1,
|
'typical_p': 1,
|
||||||
'epsilon_cutoff': 0, # In units of 1e-4
|
'epsilon_cutoff': 0, # In units of 1e-4
|
||||||
'eta_cutoff': 0, # In units of 1e-4
|
'eta_cutoff': 0, # In units of 1e-4
|
||||||
|
'tfs': 1,
|
||||||
|
'top_a': 0,
|
||||||
'repetition_penalty': 1.18,
|
'repetition_penalty': 1.18,
|
||||||
'top_k': 40,
|
'top_k': 40,
|
||||||
'min_length': 0,
|
'min_length': 0,
|
||||||
|
@ -89,6 +89,8 @@ def load_preset_values(preset_menu, state, return_dict=False):
|
|||||||
'typical_p': 1,
|
'typical_p': 1,
|
||||||
'epsilon_cutoff': 0,
|
'epsilon_cutoff': 0,
|
||||||
'eta_cutoff': 0,
|
'eta_cutoff': 0,
|
||||||
|
'tfs': 1,
|
||||||
|
'top_a': 0,
|
||||||
'repetition_penalty': 1,
|
'repetition_penalty': 1,
|
||||||
'encoder_repetition_penalty': 1,
|
'encoder_repetition_penalty': 1,
|
||||||
'top_k': 0,
|
'top_k': 0,
|
||||||
@ -101,8 +103,6 @@ def load_preset_values(preset_menu, state, return_dict=False):
|
|||||||
'mirostat_mode': 0,
|
'mirostat_mode': 0,
|
||||||
'mirostat_tau': 5.0,
|
'mirostat_tau': 5.0,
|
||||||
'mirostat_eta': 0.1,
|
'mirostat_eta': 0.1,
|
||||||
'tfs': 1,
|
|
||||||
'top_a': 0,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
with open(Path(f'presets/{preset_menu}.yaml'), 'r') as infile:
|
with open(Path(f'presets/{preset_menu}.yaml'), 'r') as infile:
|
||||||
|
Loading…
Reference in New Issue
Block a user