summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--do_ml.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/do_ml.py b/do_ml.py
index e0df62be3..fbe8015b0 100644
--- a/do_ml.py
+++ b/do_ml.py
@@ -89,7 +89,7 @@ def do_ml(desc_data,
mae = np.mean(np.abs(Ycm_predicted - Ycm_test))
if show_msgs:
- print('\tMAE for {}: {}'.format(desc_type, mae))
+ print('\tMAE for {}: {:.4f}'.format(desc_type, mae))
toc = time.perf_counter()
tictoc = toc - tic