mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-08-08 12:37:44 +00:00
15 lines
331 B
Python
15 lines
331 B
Python
|
|
from rdagent.core.task import FBTaskImplementation
|
||
|
|
|
||
|
|
|
||
|
|
class QlibDataTaskImplementation(FBTaskImplementation):
|
||
|
|
"""
|
||
|
|
Docker run
|
||
|
|
Everything in a folder
|
||
|
|
- config.yaml
|
||
|
|
- price-volume data dumper
|
||
|
|
- `data.py` + Adaptor to Factor implementation
|
||
|
|
- results in `mlflow`
|
||
|
|
|
||
|
|
- TODO: implement a qlib handler
|
||
|
|
"""
|