From 08b44ed727574b2e30f04b6c50be6d45b90cbe57 Mon Sep 17 00:00:00 2001 From: Jactus Date: Mon, 15 Mar 2021 14:12:35 +0800 Subject: [PATCH] Update docs --- qlib/workflow/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/qlib/workflow/__init__.py b/qlib/workflow/__init__.py index 834bd059e..203f49bc0 100644 --- a/qlib/workflow/__init__.py +++ b/qlib/workflow/__init__.py @@ -29,11 +29,16 @@ class QlibRecorder: .. code-block:: Python + # start new experimetn and recorder with R.start('test', 'recorder_1'): model.fit(dataset) R.log... ... # further operations + # resume previous experiment and recorder + with R.start('test', 'recorder_1'): # if users want to resume recorder, they have to specify the exact same name for experiment and recorder. + ... # further operations + Parameters ---------- experiment_name : str