Skip to content

Commit

Permalink
Try extra debug
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherbunn committed Sep 22, 2023
1 parent d6d382d commit 0af108c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evalml/pipelines/component_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ def _transform_features(
)
if not _schema_is_equal(X_schema, self._input_types):
raise PipelineError(
"Input X data types are different from the input types the pipeline was fitted on.",
f"Input X data types are different from the input types the pipeline was fitted on. \n Got {X_schema} but expected {self._input_types}",
code=PipelineErrorCodeEnum.PREDICT_INPUT_SCHEMA_UNEQUAL,
details={
"input_features_types": X_schema.types,
Expand Down

0 comments on commit 0af108c

Please sign in to comment.