mirror of
https://github.com/microsoft/qlib.git
synced 2026-07-12 07:16:54 +08:00
Remove arctic from Qlib core to Contrib (#865)
* Remove arctic from Qlib core to Contrib * fix empty df bug
This commit is contained in:
@@ -17,6 +17,7 @@ Current version of script with default value tries to connect localhost **via de
|
||||
Run following command to install necessary libraries
|
||||
```
|
||||
pip install pytest
|
||||
pip install arctic # NOTE: pip may fail to resolve the right package dependency !!! Please make sure the dependency are satisfied.
|
||||
```
|
||||
|
||||
# Importing example data
|
||||
|
||||
@@ -25,7 +25,11 @@ class TestClass(unittest.TestCase):
|
||||
mem_cache_type="sizeof",
|
||||
kernels=1,
|
||||
expression_provider={"class": "LocalExpressionProvider", "kwargs": {"time2idx": False}},
|
||||
feature_provider={"class": "ArcticFeatureProvider", "kwargs": {"uri": "127.0.0.1"}},
|
||||
feature_provider={
|
||||
"class": "ArcticFeatureProvider",
|
||||
"module_path": "qlib.contrib.data.data",
|
||||
"kwargs": {"uri": "127.0.0.1"},
|
||||
},
|
||||
dataset_provider={
|
||||
"class": "LocalDatasetProvider",
|
||||
"kwargs": {
|
||||
|
||||
Reference in New Issue
Block a user