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

del some print

This commit is contained in:
bxdd
2021-01-26 07:33:26 +00:00
parent 6a145df87c
commit 8e9ca22b07

View File

@@ -10,7 +10,6 @@ class HighFreqNorm(Processor):
self.fit_end_time = fit_end_time
def fit(self, df_features):
print("==============fit==============")
fetch_df = fetch_df_by_index(df_features, slice(self.fit_start_time, self.fit_end_time), level="datetime")
del df_features
df_values = fetch_df.values
@@ -34,7 +33,6 @@ class HighFreqNorm(Processor):
self.feature_vmin[name] = np.nanmin(part_values)
def __call__(self, df_features):
print("==============call==============")
df_features.set_index("date", append=True, drop=True, inplace=True)
df_values = df_features.values
names = {