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? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change how node names are generated to not contain commas. Currently we stringify a node's definition and set that as the node name if no name has been set explicitly: https://github.com/kedro-org/kedro/blob/main/kedro/pipeline/node.py#L239
Change is so that the generated name will contain the function name and output, where the outputs are separated by _ or - instead of ,.
_
-
,
So two_inputs([A0,B0]) -> [C1,C2] would become two_inputs -> [C1-C2]
two_inputs([A0,B0]) -> [C1,C2]
two_inputs -> [C1-C2]
#1828
The text was updated successfully, but these errors were encountered:
Completed in #2087
Sorry, something went wrong.
jmholzer
Successfully merging a pull request may close this issue.
Description
Change how node names are generated to not contain commas. Currently we stringify a node's definition and set that as the node name if no name has been set explicitly: https://github.com/kedro-org/kedro/blob/main/kedro/pipeline/node.py#L239
Change is so that the generated name will contain the function name and output, where the outputs are separated by
_
or-
instead of,
.So
two_inputs([A0,B0]) -> [C1,C2]
would becometwo_inputs -> [C1-C2]
Context
#1828
The text was updated successfully, but these errors were encountered: