fix: first round app folder cleaning (#166)

* first round app folder cleaning

* fix CI
This commit is contained in:
Xu Yang
2024-08-05 18:11:23 +08:00
committed by GitHub
parent d2203530dc
commit 4618d59ec3
22 changed files with 43 additions and 335 deletions
+2 -2
View File
@@ -8,7 +8,7 @@ from qlib.workflow import R
# here is the documents of the https://qlib.readthedocs.io/en/latest/component/recorder.html
# TODO: list all the recorder and metrics
# TODO: list all the recorder and metrics
# Assuming you have already listed the experiments
experiments = R.list_experiments()
@@ -30,7 +30,7 @@ for experiment in experiments:
# TODO: get the latest recorder
recorder_list = R.list_recorders(experiment_name="workflow")
end_times = {key: value.info['end_time'] for key, value in recorder_list.items()}
end_times = {key: value.info["end_time"] for key, value in recorder_list.items()}
sorted_end_times = dict(sorted(end_times.items(), key=lambda item: item[1], reverse=True))
latest_recorder_id = next(iter(sorted_end_times))