We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Add a get_diagram method to MLPipeline which outputs a visual representation of the pipeline flow as a Graphviz diagram.
get_diagram
MLPipeline
The diagram should include:
The method should have the following arguments:
fit
True
image_path
None
graphviz.Digraph
See the following references:
The text was updated successfully, but these errors were encountered:
Merge pull request #113 from Hector-hedb12/remove-upper-bound-in-pand…
1765677
…as-version Remove upper bound in pandas version
erica-chiu
Successfully merging a pull request may close this issue.
Add a
get_diagram
method toMLPipeline
which outputs a visual representation of the pipeline flow as a Graphviz diagram.The diagram should include:
The method should have the following arguments:
fit
: boolean value indicating whether to include thefit
arguments or not. Defaults toTrue
.image_path
: path to where the diagram image will be stored. IfNone
, agraphviz.Digraph
object is returned. Defaults toNone
.See the following references:
The text was updated successfully, but these errors were encountered: