From 0af108cd0078db6a2f1ac637338c89fbb7ce5009 Mon Sep 17 00:00:00 2001 From: christopherbunn Date: Fri, 22 Sep 2023 10:58:04 -0400 Subject: [PATCH] Try extra debug --- evalml/pipelines/component_graph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evalml/pipelines/component_graph.py b/evalml/pipelines/component_graph.py index 0f3f4e5810..2ff8a04aff 100644 --- a/evalml/pipelines/component_graph.py +++ b/evalml/pipelines/component_graph.py @@ -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,