Fix hyperopt output

This commit is contained in:
Matthias
2020-10-03 13:27:06 +02:00
parent d2111c088b
commit cb74c9bcde
2 changed files with 7 additions and 4 deletions

View File

@@ -163,7 +163,8 @@ class Hyperopt:
f"saved to '{self.results_file}'.")
# Store hyperopt filename
latest_filename = Path.joinpath(self.results_file.parent, LAST_BT_RESULT_FN)
file_dump_json(latest_filename, {'latest_hyperopt': str(self.results_file.name)})
file_dump_json(latest_filename, {'latest_hyperopt': str(self.results_file.name)},
log=False)
@staticmethod
def _read_results(results_file: Path) -> List: