Skip to content

Commit

Permalink
remove debugging print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
elray1 committed Oct 23, 2024
1 parent d2d1395 commit b91b7ec
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/postpredict/dependence.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,8 +245,6 @@ def _build_train_X_Y(self, min_horizon: int, max_horizon: int,
if obs_mask is None:
obs_mask = True
df_mask_and_dropnull = self.target_data_train.filter(obs_mask).drop_nulls()
print("build train X_Y, df mask and dropnull")
print(df_mask_and_dropnull)

if pit_templates:
pit_values = (
Expand All @@ -263,8 +261,6 @@ def _build_train_X_Y(self, min_horizon: int, max_horizon: int,
how="left"
)
)
print("pit values, in _build_train_X_Y")
print(pit_values)
train_X_Y_source = pit_values
train_Y_cols = [f"pit_{pred_c}" for pred_c in self.wide_horizon_cols]
else:
Expand Down

0 comments on commit b91b7ec

Please sign in to comment.