From ba21e38cdb3d504a69f6808913ea2a649ab4e916 Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Thu, 2 Jun 2022 21:43:08 -0700 Subject: Make the bar graph thing do fractions. --- ml/model_trainer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ml') diff --git a/ml/model_trainer.py b/ml/model_trainer.py index 34ded74..07f7b99 100644 --- a/ml/model_trainer.py +++ b/ml/model_trainer.py @@ -278,9 +278,9 @@ class TrainingBlueprint(ABC): def make_progress_graph(self) -> None: if not self.spec.quiet: - from text_utils import progress_graph + from text_utils import bar_graph - progress_graph(self.file_done_count, self.total_file_count) + bar_graph(self.file_done_count, self.total_file_count) @timed def read_input_files(self): -- cgit v1.3