Hello kedro team! Can a node within a modular pipe...
# questions
g
Hello kedro team! Can a node within a modular pipeline access its namespace? Use case is to be able to use the namespace when logging with mlflow (e.g. log in namespace/artifact_name). In that case, if you have the same template pipeline for 2 namespaces n1 and n2 and you override a params dict for each using p1 and p2, jedro mlflow will try to log both p1 and p2 but will fails as they have the same keys.
Alternatively, an mlflow child run per namespace would be even better, but this is more a question for kedro-mlflow's team.
m
If you really want to, you can pass the namespace as an additional param to the node as a string, e.g. by using
partial
🤔
👍 2