Skip to content

Commit 438a494

Browse files
committed
adjust print statement slightly
1 parent c6e3192 commit 438a494

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

eval_protocol/cli_commands/create_rft.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -285,10 +285,9 @@ def _warn_if_large_dataset(dataset_jsonl: Optional[str], row_threshold: int = 20
285285
count = sum(1 for line in f if line.strip())
286286
if count > row_threshold:
287287
print(
288-
f"Warning: Local evaluator validation will run over more than {row_threshold} rows "
289-
f"from dataset JSONL at {dataset_jsonl}.\n"
290-
" This may take a while. You can pass --skip-validation to `ep create rft` "
291-
"to skip local pytest-based validation if you are confident in your evaluator."
288+
f"Warning: Local evaluator validation will run over more than {row_threshold} rows from dataset JSONL at {dataset_jsonl}.\n"
289+
" This may take a while. You can pass --skip-validation to `ep create rft` to skip local pytest-based validation "
290+
"if you are confident in your evaluator."
292291
)
293292
except Exception:
294293
# Best-effort hint only; do not block RFT creation if counting fails.

0 commit comments

Comments
 (0)