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

update readme model&dataset zoo

This commit is contained in:
Young
2020-09-26 08:57:38 +00:00
parent 0e8a4a3eb5
commit 247dde2d26

View File

@@ -17,6 +17,8 @@ For more details, please refer to our paper ["Qlib: An AI-oriented Quantitative
- [Data Preparation](#Data-Preparation)
- [Auto Quant Research Workflow with](#Auto-Quant-Research-Workflow)
- [Building Customized Quant Research Workflow by Code](#Building-Customized-Quant-Research-Workflow-by-Code)
- [Quant Model Zoo](#Quant-Model-Zoo)
- [Quant Dataset Zoo](#Quant-Dataset-Zoo)
- [More About Qlib](#More-About-Qlib)
- [Offline Mode and Online Mode](#Offline-Mode-and-Online-Mode)
- [Performance of Qlib Data Server](#Performance-of-Qlib-Data-Server)
@@ -166,6 +168,20 @@ Qlib provides a tool named `Estimator` to run the whole workflow automatically (
The automatic workflow may not suite the research workflow of all Quant researchers. To support a flexible Quant research workflow, Qlib also provides a modularized interface to allow researchers to build their own workflow by code. [Here](examples/train_backtest_analyze.ipynb) is a demo for customized Quant research workflow by code
# Quant-model-zoo
Here is a list of models build on `Qlib`.
- [GBDT based on lightgbm](qlib/contrib/model/gbdt.py)
- [MLP based on pytroch](qlib/contrib/model/pytorch_nn.py)
Your PR of new Quant models is highly welcomed.
# Quant-dataset-zoo
Dataset plays a very important role in Quant. Here is a list of the datasets build on `Qlib`.
- [Alpha360](./qlib/contrib/estimator/handler.py)
- [QLibDataHandlerClose](./qlib/contrib/estimator/handler.py)
Your PR to build new Quant dataset is highly welcomed.
# More About Qlib
The detailed documents are organized in [docs](docs/).