From 1d62496236936c34fdea84d616e4fb074007c031 Mon Sep 17 00:00:00 2001 From: jo-elimu <1451036+jo-elimu@users.noreply.github.com> Date: Sat, 17 Aug 2024 14:57:24 +0700 Subject: [PATCH] read mae from text file --- pmml/utils/mae_utils.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 pmml/utils/mae_utils.py diff --git a/pmml/utils/mae_utils.py b/pmml/utils/mae_utils.py new file mode 100644 index 0000000..9222740 --- /dev/null +++ b/pmml/utils/mae_utils.py @@ -0,0 +1,3 @@ +# Read the Mean Absolute Error (MAE) from a text file +with open('../step3_predict/step3_2_mean_absolute_error.txt', 'r') as file: + print(file.read())