I'm using the Assisted Modeling tool (in Version: 2023.2.1.226 Patch: 6), exporting to Python, and trying to delve into the code created by Alteryx. I haven't been able to find documentation for code such as this, to learn about "make_pipeline_from_components" and "PipelineEntity". Where can I find documentation for those, and ayx_ml_toolkit in general?
target_metadata = ColumnMetadataEntity(
col_name=target_variable,
col_type=training_metadata[target_variable]["type"]
)
pipeline = make_pipeline_from_components([
feature_typing,
missing_values,
feature_selection,
one_hot_encoding,
classifier
], problem_type="BINARY")
pipeline_entity = PipelineEntity(
training_data=training_data_df,
target=target_metadata,
pipeline=pipeline
)