Hello everyone! Is it possible to access parameter...
# questions
l
Hello everyone! Is it possible to access parameters apart from the node inputs? Our goal is to format the variables names and make it change depending on the global params input on kedro run.
d
You can use a
before_pipeline_run
hook to achieve this :)
l
Thanks for the answer! Is its use only with ml-flow?
d
no hooks are yours to extend kedro anyway you want https://kedro.readthedocs.io/en/stable/hooks/introduction.html
l
Ok thanks!!