From 8e9ca22b070e6958f81b547c5ba24c8e11801193 Mon Sep 17 00:00:00 2001 From: bxdd Date: Tue, 26 Jan 2021 07:33:26 +0000 Subject: [PATCH] del some print --- examples/high_freq/highfreq_processor.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/examples/high_freq/highfreq_processor.py b/examples/high_freq/highfreq_processor.py index c6b69acae..d2ffe41ce 100644 --- a/examples/high_freq/highfreq_processor.py +++ b/examples/high_freq/highfreq_processor.py @@ -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 = {