1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-07-06 20:41:09 +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

@@ -53,3 +53,8 @@ python -m qlib.rl.contrib.backtest --config_path ./experiment_config/backtest/co
```
The backtest workflow will use the trained model in `checkpoints/`. The backtest summary can be found in `outputs/`.
## Others
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](./simple_example.ipynb) for RL without business loss is created.

File diff suppressed because one or more lines are too long