Is it possible to overwrite properties taken from the parameters.yaml file within a Kedro notebook?
I am trying to dynamically change parameter values within a notebook. I would like to be able to give users the ability to run a standard pipeline but with customizable parameters. I don't want to change the YAML file, I just want to change the parameter for the life of the notebook.
I have tried editing the params within the context but this has no affect.
context.params.update({"test_param": 2})
Am I missing something or is this not an intended use case?