mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-22 16:17:57 +01:00
Parameters
This commit is contained in:
parent
0f6708c471
commit
9e9cfc4b31
@ -36,10 +36,10 @@ class RWKVModel:
|
|||||||
args = PIPELINE_ARGS(
|
args = PIPELINE_ARGS(
|
||||||
temperature = temperature,
|
temperature = temperature,
|
||||||
top_p = top_p,
|
top_p = top_p,
|
||||||
alpha_frequency = 0.25, # Frequency Penalty (as in GPT-3)
|
alpha_frequency = alpha_frequency, # Frequency Penalty (as in GPT-3)
|
||||||
alpha_presence = 0.25, # Presence Penalty (as in GPT-3)
|
alpha_presence = alpha_presence, # Presence Penalty (as in GPT-3)
|
||||||
token_ban = [0], # ban the generation of some tokens
|
token_ban = token_ban, # ban the generation of some tokens
|
||||||
token_stop = []
|
token_stop = token_stop
|
||||||
)
|
)
|
||||||
|
|
||||||
return self.model.generate(context, token_count=token_count, args=args, callback=callback)
|
return self.model.generate(context, token_count=token_count, args=args, callback=callback)
|
||||||
|
Loading…
Reference in New Issue
Block a user