mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-25 01:09:22 +01:00
Change min_p default to 1.0
This commit is contained in:
parent
367e5e6e43
commit
4537853e2c
@ -252,8 +252,8 @@ def get_logits_processor_patch(self, **kwargs):
|
||||
|
||||
def generation_config_init_patch(self, **kwargs):
|
||||
self.__init___old(**kwargs)
|
||||
self.min_p = kwargs.pop("min_p", 1.0)
|
||||
self.tfs = kwargs.pop("tfs", 1.0)
|
||||
self.min_p = kwargs.pop("min_p", 0.0)
|
||||
self.top_a = kwargs.pop("top_a", 0.0)
|
||||
self.mirostat_mode = kwargs.pop("mirostat_mode", 0)
|
||||
self.mirostat_eta = kwargs.pop("mirostat_eta", 0.1)
|
||||
|
Loading…
Reference in New Issue
Block a user