Skip to content

Commit

Permalink
Print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherbunn committed Oct 31, 2023
1 parent 87e6607 commit be5da54
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions evalml/pipelines/multiseries_regression_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,12 @@ def predict_in_sample(
X_unstacked = infer_feature_types(X_unstacked)
y_unstacked = infer_feature_types(y_unstacked)

print("X_uns", X_unstacked, X_unstacked.ww.schema)
print("y_uns", y_unstacked, y_unstacked.ww.schema)
print("Xtr_uns", X_train_unstacked, X_train_unstacked.ww.schema)
print("ytr_uns", y_train_unstacked, y_train_unstacked.ww.schema)
print(self.component_graph._input_types)

unstacked_predictions = super().predict_in_sample(
X_unstacked,
y_unstacked,
Expand Down

0 comments on commit be5da54

Please sign in to comment.