We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65ffba4 commit 73b52baCopy full SHA for 73b52ba
1 file changed
src/ydata_synthetic/preprocessing/base_processor.py
@@ -58,8 +58,8 @@ def col_transform_info(self) -> ProcessorInfo:
58
return self._col_transform_info
59
60
def __create_metadata_synth(self):
61
- num_info = None
62
- cat_info = None
+ num_info = PipelineInfo([], [])
+ cat_info = PipelineInfo([], [])
63
# Numerical ls named tuple
64
if self.num_cols:
65
num_info = PipelineInfo(self.num_pipeline.feature_names_in_, self.num_pipeline.get_feature_names_out())
0 commit comments