Releases: scikit-learn-contrib/skdag
Releases · scikit-learn-contrib/skdag
v0.0.6
Bug fix: nodes with passthrough dependencies were assuming the passthroughs were inserting prefixes to dataframe column names. This has been fixed to remove the assumption for passthroughs only.
v0.0.5
- Edge annotations on diagrams
v0.0.3
- Improved Pandas support. Dataframe information can now be preserved or inferred between DAG steps with the
infer_dataframe
option in DAGBuilder
. Dataframe behaviour can also be customised in more detail for each step using the dataframe_columns
option in DAGBuilder.add_step()
.
DAG.make_pipeline
is now deprecated by DAGBuilder.make_pipeline
.
v0.0.2
- DAG class now passes
estimator_checks
- graphviz no longer a dependency - but it must still be installed separately for DAG visualisation support.
v0.0.1
First initial release.
- Basic DAG construction
- Basic DAG visualisation
- Model stacking
- CI