You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ Qlib is an AI-oriented quantitative investment platform, which aims to realize t
17
17
18
18
It contains the full ML pipeline of data processing, model training, back-testing; and covers the entire chain of quantitative investment: alpha seeking, risk modeling, portfolio optimization, and order execution.
19
19
20
-
With Qlib, user can easily try ideas to create better Quant investment strategies.
20
+
With Qlib, users can easily try ideas to create better Quant investment strategies.
21
21
22
22
For more details, please refer to our paper ["Qlib: An AI-oriented Quantitative Investment Platform"](https://arxiv.org/abs/2009.11189).
23
23
@@ -246,10 +246,10 @@ The performance of each model on the `Alpha158` and `Alpha360` dataset can be fo
246
246
All the models listed above are runnable with ``Qlib``. Users can find the config files we provide and some details about the model through the [benchmarks](examples/benchmarks) folder. More information can be retrieved at the model files listed above.
247
247
248
248
`Qlib` provides three different ways to run a single model, users can pick the one that fits their cases best:
249
-
- User can use the tool `qrun` mentioned above to run a model's workflow based from a config file.
250
-
- User can create a `workflow_by_code` python script based on the [one](examples/workflow_by_code.py) listed in the `examples` folder.
249
+
- Users can use the tool `qrun` mentioned above to run a model's workflow based from a config file.
250
+
- Users can create a `workflow_by_code` python script based on the [one](examples/workflow_by_code.py) listed in the `examples` folder.
251
251
252
-
- User can use the script [`run_all_model.py`](examples/run_all_model.py) listed in the `examples` folder to run a model. Here is an example of the specific shell command to be used: `python run_all_model.py --models=lightgbm`, where the `--models` arguments can take any number of models listed above(the available models can be found in [benchmarks](examples/benchmarks/)). For more use cases, please refer to the file's [docstrings](examples/run_all_model.py).
252
+
- Users can use the script [`run_all_model.py`](examples/run_all_model.py) listed in the `examples` folder to run a model. Here is an example of the specific shell command to be used: `python run_all_model.py --models=lightgbm`, where the `--models` arguments can take any number of models listed above(the available models can be found in [benchmarks](examples/benchmarks/)). For more use cases, please refer to the file's [docstrings](examples/run_all_model.py).
253
253
254
254
## Run multiple models
255
255
`Qlib` also provides a script [`run_all_model.py`](examples/run_all_model.py) which can run multiple models for several iterations. (**Note**: the script only support *Linux* for now. Other OS will be supported in the future. Besides, it doesn't support parrallel running the same model formultiple times as well, and this will be fixedin the future development too.)
0 commit comments