1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-06-06 05:51:17 +08:00

Simple RL notebook (#1395)

* Simple RL notebook

* Add link to the notebook

Co-authored-by: Young <afe.young@gmail.com>
This commit is contained in:
Huoran Li
2023-01-03 00:17:18 +08:00
committed by GitHub
parent ebb8ec34f3
commit 44ce91ee9d
3 changed files with 354 additions and 1 deletions

View File

@@ -42,4 +42,8 @@ As you may have noticed, a training vessel itself holds all the required compone
With a training vessel, the trainer could finally launch the training pipeline by simple, Scikit-learn-like interfaces (i.e., ``trainer.fit()``).
The API for Trainer and TrainingVessel and can be found `here <../../reference/api.html#module-qlib.rl.trainer>`__.
The API for Trainer and TrainingVessel and can be found `here <../../reference/api.html#module-qlib.rl.trainer>`__.
The RL module is designed in a loosely-coupled way. Currently, RL examples are integrated with concrete business logic.
But the core part of RL is much simpler than what you see.
To demonstrate the simple core of RL, `a dedicated notebook <https://github.com/microsoft/qlib/tree/main/examples/rl/simple_example.ipynb>`__ for RL without business loss is created.