File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ max_num_seqs: null
153153# If True, enables asynchronous scheduling in vLLM for faster generation
154154async_scheduling : True
155155# stop generation when any of these strings is generated
156- stop_strings : [</answer>]
156+ stop_strings : null
157157
158158# ====== Checkpoint Configuration ======
159159enable_checkpointing : True
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ def get_match_format_regex(tmvp_config):
106106 match_format = re .compile (
107107 (
108108 r"^[\s]{0,}"
109- rf"{ tmvp_config .reasoning_start_token } .+? { tmvp_config .reasoning_end_token } .*?"
109+ rf"{ tmvp_config .reasoning_start_token } .+{ tmvp_config .reasoning_end_token } .*?"
110110 rf"{ tmvp_config .solution_start_token } (.+?){ tmvp_config .solution_end_token } "
111111 ),
112112 flags = re .MULTILINE | re .DOTALL ,
You can’t perform that action at this time.
0 commit comments