1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-06-30 17:41:18 +08:00

Merge pull request #381 from D-X-Y/main

Fix print issue
This commit is contained in:
you-n-g
2021-03-30 17:25:26 +08:00
committed by GitHub

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
)
)