From 3a9faf04a3f8b9b77c76589b79881277d8610195 Mon Sep 17 00:00:00 2001 From: rchan Date: Tue, 31 Oct 2023 10:26:51 +0000 Subject: [PATCH] change wording to 'using the default epsilon' --- airsenal/framework/bpl_interface.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/airsenal/framework/bpl_interface.py b/airsenal/framework/bpl_interface.py index e2845317..2495d08a 100644 --- a/airsenal/framework/bpl_interface.py +++ b/airsenal/framework/bpl_interface.py @@ -122,7 +122,8 @@ def create_and_fit_team_model( print(f"Fitting {type(model)} model with epsilon = {fit_args['epsilon']}") else: print( - f"Fitting {type(model)} model but no epsilon passed, so setting epsilon = 0" + f"Fitting {type(model)} model but no epsilon passed, " + "so using the default epsilon = 0" ) return model.fit(training_data=training_data, **fit_args)