1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-07-05 20:11:08 +08:00

Add simplified download command (#1234)

* Simplify the download command(microsoft#1232)

* Update simplified download instruction
This commit is contained in:
Hyeongmin Moon
2022-08-05 18:41:16 +09:00
committed by GitHub
parent 558603beca
commit 75aae820e8
3 changed files with 22 additions and 0 deletions

9
qlib/run/get_data.py Normal file
View File

@@ -0,0 +1,9 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
import fire
from qlib.tests.data import GetData
if __name__ == "__main__":
fire.Fire(GetData)