Replies: 1 comment 2 replies
-
Found the answer myself after reading the documentation on the node(
...,
func=do_something,
inputs={
"data": "model_input_table",
"parameters": "params:param_dict",
"more_params": "params:global_param_dict",
},
...,
) The given inputs will be applied nicely to the arguments in: def do_something(data: pd.DataFrame, parameters: dict, more_params: dict) -> Any:
... |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I'm trying to simultaneously make use of pipeline specific configurations in
conf/base/parameters/pipeline_name.yml
, as well as configurations that are relevant to all pipelines and set inconf/base/parameters.yml
.But how can I specify multiple different parameters inputs for the
node
objects inside apipeline.py
module? The following didn't work for me:Is
params
a keyword that can only be used once for the inputs of a single node? Is it at all possible to decouple pipeline specific and global configuration parameters in the way that I'm trying? Thank you for your help!Beta Was this translation helpful? Give feedback.
All reactions