Skip to content

Commit 9c934b6

Browse files
committed
fix pre-commit error
Signed-off-by: Huamin Chen <[email protected]>
1 parent a25fa15 commit 9c934b6

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/training/model_eval/reasoning_eval_consolidated.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,9 @@
6464
MIN_IMPROVEMENT = 0.10 # Minimum improvement threshold for Bayesian pathway
6565

6666
# Model API configuration
67-
MAX_TOKENS_REASONING = 6144 # Maximum tokens for reasoning mode (allows full reasoning chains)
67+
MAX_TOKENS_REASONING = (
68+
6144 # Maximum tokens for reasoning mode (allows full reasoning chains)
69+
)
6870

6971

7072
def parse_args() -> argparse.Namespace:
@@ -740,7 +742,9 @@ def generate_config(
740742
model_lower = model.lower()
741743
if "qwen3" in model_lower:
742744
reasoning_family = "qwen3"
743-
elif "deepseek" in model_lower and re.search(r"v3(?:[._]?1(?:\.\d+)?)?", model_lower):
745+
elif "deepseek" in model_lower and re.search(
746+
r"v3(?:[._]?1(?:\.\d+)?)?", model_lower
747+
):
744748
reasoning_family = "deepseek"
745749
elif "gpt-oss" in model_lower:
746750
reasoning_family = "gpt-oss"

0 commit comments

Comments
 (0)