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

fix Recorder init bug

This commit is contained in:
Young
2020-11-09 15:17:08 +00:00
parent 633af182f4
commit b1c6b216fe
2 changed files with 3 additions and 3 deletions

View File

@@ -109,6 +109,7 @@ class ProcessInf(Processor):
class MinMaxNorm(Processor):
def __init__(self, fit_start_time, fit_end_time, fields_group=None):
# FIXME: time is not used
self.fit_start_time = fit_start_time
self.fit_end_time = fit_end_time
self.fields_group = fields_group
@@ -135,6 +136,7 @@ class MinMaxNorm(Processor):
class ZscoreNorm(Processor):
def __init__(self, fit_start_time, fit_end_time, fields_group=None):
# FIXME: time is not used
self.fit_start_time = fit_start_time
self.fit_end_time = fit_end_time
self.fields_group = fields_group