Skip to content

Commit d5d06d8

Browse files
Explicit that fitting time is measured in seconds (#862)
1 parent d3b47c9 commit d5d06d8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

python_scripts/03_categorical_pipeline_ex_02.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
print(
8383
"The mean cross-validation accuracy is: "
8484
f"{scores.mean():.3f} ± {scores.std():.3f} "
85-
f"with a fitting time of {elapsed_time:.3f}"
85+
f"with a fitting time of {elapsed_time:.3f} seconds"
8686
)
8787

8888
# %% [markdown]

python_scripts/03_categorical_pipeline_sol_02.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
print(
7777
"The mean cross-validation accuracy is: "
7878
f"{scores.mean():.3f} ± {scores.std():.3f} "
79-
f"with a fitting time of {elapsed_time:.3f}"
79+
f"with a fitting time of {elapsed_time:.3f} seconds"
8080
)
8181

8282
# %% [markdown]

0 commit comments

Comments
 (0)