Easier and more self documenting patterns for loading/saving Persistent
[python_utils.git] / ml / model_trainer.py
index 34ded741a21131b8f7638ebf475374038c3e6101..07f7b99292c9c9a3c3ac3a685c40ca59ee1b9582 100644 (file)
@@ -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):