yonikremer commited on
Commit
1fac618
1 Parent(s): d73a8e9

changed end_of_sentence_stop to false

Browse files
Files changed (1) hide show
  1. hanlde_form_submit.py +1 -1
hanlde_form_submit.py CHANGED
@@ -19,7 +19,7 @@ def create_pipeline(model_name: str, group_size: int) -> GroupedSamplingPipeLine
19
  pipeline = GroupedSamplingPipeLine(
20
  model_name=model_name,
21
  group_size=group_size,
22
- end_of_sentence_stop=True,
23
  temp=0.5,
24
  top_p=0.6,
25
  )
 
19
  pipeline = GroupedSamplingPipeLine(
20
  model_name=model_name,
21
  group_size=group_size,
22
+ end_of_sentence_stop=False,
23
  temp=0.5,
24
  top_p=0.6,
25
  )