Open Elijas opened 3 years ago
You might want to take a look at my other lib pyparts, which follows this approach, but also supports FeatureUnions, StackingClassifiers and ColumnTransformers.
While it doesn't necessarily make the syntax simpler, it removes the need to call the generate
method explicitly.
You might want to take a look at my other lib pyparts, which follows this approach, but also supports FeatureUnions, StackingClassifiers and ColumnTransformers.
While it doesn't necessarily make the syntax simpler, it removes the need to call the
generate
method explicitly.
Will take a look, thanks!
Description
I'd like to propose a simpler syntax for the pipeline description.
It is made simpler by having a
choice
function, which signifies, that either a pipeline element or some parameter needs to be hotswapped.Example
pipeline
andparam_grid
produced by this code:is identical to the
pipeline
andparam_grid
produced by the original code: