From 4361a4049ade6aff53cc1025d2542ebab2338d28 Mon Sep 17 00:00:00 2001 From: Jactus Date: Thu, 7 Jan 2021 11:28:02 +0800 Subject: [PATCH] Fix create_recorder bug --- qlib/workflow/exp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qlib/workflow/exp.py b/qlib/workflow/exp.py index a92a9a9ea..c2548971a 100644 --- a/qlib/workflow/exp.py +++ b/qlib/workflow/exp.py @@ -65,13 +65,13 @@ class Experiment: """ raise NotImplementedError(f"Please implement the `end` method.") - def create_recorder(self, name=None): + def create_recorder(self, recorder_name=None): """ Create a recorder for each experiment. Parameters ---------- - name : str + recorder_name : str the name of the recorder to be created. Returns