Skip to content

Commit

Permalink
Removed print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherbunn committed Oct 25, 2023
1 parent c996a44 commit 2845145
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions evalml/pipelines/multiseries_regression_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,8 @@ def predict_in_sample(
self.time_index,
self.input_target_name,
)
print("y_uns", y_unstacked)
print("y_train_uns", y_train_unstacked)
# Order series ID columns to be same as X_train
y_unstacked = y_unstacked[y_train_unstacked.columns]
print("y_uns_sorted", y_unstacked)
unstacked_predictions = super().predict_in_sample(
X_unstacked,
y_unstacked,
Expand Down

0 comments on commit 2845145

Please sign in to comment.