1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-07-14 16:26:55 +08:00

Update docs

This commit is contained in:
Jactus
2021-03-15 14:12:35 +08:00
parent 83fb482f1e
commit 08b44ed727

View File

@@ -29,11 +29,16 @@ class QlibRecorder:
.. code-block:: Python .. code-block:: Python
# start new experimetn and recorder
with R.start('test', 'recorder_1'): with R.start('test', 'recorder_1'):
model.fit(dataset) model.fit(dataset)
R.log... R.log...
... # further operations ... # 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 Parameters
---------- ----------
experiment_name : str experiment_name : str