1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-07-03 02:50:58 +08:00

Fix print issue

This commit is contained in:
D-X-Y
2021-03-29 04:46:38 +00:00
parent 253378a44e
commit 968930e85f

View File

@@ -50,7 +50,9 @@ class MultiSegRecord(RecordTemp):
save_name = "results-{:}.pkl".format(key)
self.recorder.save_objects(**{save_name: results})
logger.info(
"The record '{save_name}' has been saved as the artifact of the Experiment {self.recorder.experiment_id}"
"The record '{:}' has been saved as the artifact of the Experiment {:}".format(
save_name, self.recorder.experiment_id
)
)