qlib/examples/rolling_process_data/README.md

17 строки
717 B
Markdown
Исходник Постоянная ссылка Обычный вид История

2021-03-24 20:37:17 +03:00
# Rolling Process Data
2021-03-29 15:34:36 +03:00
This workflow is an example for `Rolling Process Data`.
## Background
2021-03-29 20:00:12 +03:00
When rolling train the models, data also needs to be generated in the different rolling windows. When the rolling window moves, the training data will change, and the processor's learnable state (such as standard deviation, mean, etc.) will also change.
2021-03-29 15:34:36 +03:00
2021-03-29 20:00:12 +03:00
In order to avoid regenerating data, this example uses the `DataHandler-based DataLoader` to load the raw features that are not related to the rolling window, and then used Processors to generate processed-features related to the rolling window.
2021-03-29 15:34:36 +03:00
2021-03-29 19:54:00 +03:00
## Run the Code
2021-03-29 15:34:36 +03:00
Run the example by running the following command:
```bash
python workflow.py rolling_process
```