diff options
| author | Scott Gasch <[email protected]> | 2021-10-19 16:40:34 -0700 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2021-10-19 16:40:34 -0700 |
| commit | 351e77c767c9084aa486eedbdc9902c635b06261 (patch) | |
| tree | b41e328293b8f89ea8f56f02e451ea2afe7c2e2e /ml | |
| parent | 9484900f080e16f118806fe54973e69d36b043e8 (diff) | |
Bugfixes.
Diffstat (limited to 'ml')
| -rw-r--r-- | ml/model_trainer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ml/model_trainer.py b/ml/model_trainer.py index ab3059f..9435351 100644 --- a/ml/model_trainer.py +++ b/ml/model_trainer.py @@ -376,7 +376,7 @@ class TrainingBlueprint(ABC): print(msg) logger.info(msg) model_info_filename = f"{self.spec.basename}_model_info.txt" - now: datetime.datetime = datetime_utils.now_pst() + now: datetime.datetime = datetime_utils.now_pacific() info = f"""Timestamp: {datetime_utils.datetime_to_string(now)} Model params: {params} Training examples: {num_examples} |
