1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-07-01 18:11:18 +08:00

Fix docs of QlibRecorder

This commit is contained in:
you-n-g
2021-07-26 19:00:47 +08:00
committed by GitHub
parent a6f9dde006
commit dc6859bdd9

View File

@@ -38,13 +38,13 @@ class QlibRecorder:
.. code-block:: Python
# start new experiment and recorder
with R.start('test', 'recorder_1'):
with R.start(experiment_name='test', recorder_name='recorder_1'):
model.fit(dataset)
R.log...
... # further operations
# resume previous experiment and recorder
with R.start('test', 'recorder_1', resume=True): # if users want to resume recorder, they have to specify the exact same name for experiment and recorder.
with R.start(experiment_name='test', recorder_name='recorder_1', resume=True): # if users want to resume recorder, they have to specify the exact same name for experiment and recorder.
... # further operations
Parameters