From 3a05827dcfc9cb0a4b7d4a88a17eef8a827b32bc Mon Sep 17 00:00:00 2001 From: pamodaDilranga Date: Wed, 18 Sep 2024 09:51:33 +0530 Subject: [PATCH] MODEL_TRAINING_FAILED_ERROR variable missing bug fix --- model_trainer/constants.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/model_trainer/constants.py b/model_trainer/constants.py index b52be4f1..65e7265f 100644 --- a/model_trainer/constants.py +++ b/model_trainer/constants.py @@ -59,6 +59,8 @@ MODEL_TRAINED_AND_DEPLOYED_PROGRESS_MESSAGE = "The model was trained and deployed successfully to the environment" +MODEL_TRAINING_FAILED_ERROR = "Model training failed due to an error." + INITIATING_TRAINING_PROGRESS_PERCENTAGE=30