Setting Parameters in kedro
Parameters are a place for you to store variables for your pipeline that can be accessed by any node that needs it, and can be easily changed by changing your environment. Parameters are stored in the repository in yaml files. https://youtu.be/Jj5cQ5bqcjg What is Kedro 👆 Unsure what kedro is? Check out this post. parameters files # You can have multiple parameters files and choose which ones to load by setting your environment. By default kedro will give you a and parameters file. base # The base environment should contain all of the default values you want to run. NOTE base will always be loaded first. accessing parameters # Parameters can be accessed through context or through the catalog. Generally when you are working with nodes it will be loaded through the catalog. Loding with the context. Loading with the catalog. Loading a specific key with the catalog. using parameters in nodes # Here is an example from the complete spaceflights demo. The entire parameters dict is passed in, t…