diff options
| author | Scott Gasch <[email protected]> | 2022-06-02 21:43:08 -0700 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2022-06-02 21:43:08 -0700 |
| commit | ba21e38cdb3d504a69f6808913ea2a649ab4e916 (patch) | |
| tree | b262b0a0d968c84ab3c16ebc0927f932ca14a3ec /ml/model_trainer.py | |
| parent | 19c9d04094b49b25826b875bf06e5e622f97e1d5 (diff) | |
Make the bar graph thing do fractions.
Diffstat (limited to 'ml/model_trainer.py')
| -rw-r--r-- | ml/model_trainer.py | 4 |
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): |
