Hi team, how can I specify parameters on runtime b...
# questions
a
Hi team, how can I specify parameters on runtime but using session.run() instead of the CLI command? I'm running my kedro project in a databricks notebook
d
run
help(session.run)
to see what arguments are allowed
a
I don't see any parameters options 😞 is there any way to specify parameters at runtime using a notebook?
a
KedroSession.create()
has
extra_params
argument where you can pass these
K 1
a
Hi Ankita, that worked, thanks very much!
🚀 2