summaryrefslogtreecommitdiff
path: root/ml/model_trainer.py
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2022-06-02 21:43:08 -0700
committerScott Gasch <[email protected]>2022-06-02 21:43:08 -0700
commitba21e38cdb3d504a69f6808913ea2a649ab4e916 (patch)
treeb262b0a0d968c84ab3c16ebc0927f932ca14a3ec /ml/model_trainer.py
parent19c9d04094b49b25826b875bf06e5e622f97e1d5 (diff)
Make the bar graph thing do fractions.
Diffstat (limited to 'ml/model_trainer.py')
-rw-r--r--ml/model_trainer.py4
1 files changed, 2 insertions, 2 deletions
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):