Basic node input question #1279
meaningfromdata
started this conversation in
Idea
Replies: 1 comment 4 replies
-
So you can use something called partial application to bind values to a function before calling them. Here is a StackOverflow post on how to do this. Personally I would like to introduce a Kedro |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Basic question: Do all node inputs have to reference an element that is already listed in the catalog.yml or parameters.yml files? In other words, is not possible to simply add an input directly in the pipeline.py file? For example, if I want to pass a csv file and a string as the inputs to a node, how do I pass the string (note that the csv file is already in the catalog.yml)? Does the string need to be listed in the parameters.yml file or can I define it directly in the pipeline node inputs?
Beta Was this translation helpful? Give feedback.
All reactions