1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-07-07 04:50:56 +08:00

fix contrib data freq

This commit is contained in:
Young
2021-02-02 08:48:50 +00:00
committed by you-n-g
parent 835b47a7e7
commit a87fb5a68c
2 changed files with 6 additions and 6 deletions

View File

@@ -68,6 +68,7 @@ class Alpha360(DataHandlerLP):
"label": kwargs.get("label", self.get_label_config()),
},
"filter_pipe": filter_pipe,
"freq": freq,
},
}
@@ -75,7 +76,6 @@ class Alpha360(DataHandlerLP):
instruments=instruments,
start_time=start_time,
end_time=end_time,
freq=freq,
data_loader=data_loader,
learn_processors=learn_processors,
infer_processors=infer_processors,
@@ -154,13 +154,13 @@ class Alpha158(DataHandlerLP):
"label": kwargs.get("label", self.get_label_config()),
},
"filter_pipe": filter_pipe,
"freq": freq,
},
}
super().__init__(
instruments=instruments,
start_time=start_time,
end_time=end_time,
freq=freq,
data_loader=data_loader,
infer_processors=infer_processors,
learn_processors=learn_processors,