You should bring your notebook (substep) to the view:
In order to make this follow the steps below please:
-
Remove pipeline_params and step_params .
Leave only substep_params with the corresponding comment:
# specify substep parameters for interactive run # this cell will be replaced during job run with the parameters from json within params subfolder substep_params={}
-
Add a cell with the code right after substep_params cell
# load pipeline and step parameters - do not edit from sinara.substep import get_pipeline_params, get_step_params pipeline_params = get_pipeline_params(pprint=True) step_params = get_step_params(pprint=True)
-
Remove default_params_values from substep interface
Example:
-
(Optional) Bring the parameters that should be accessible across substeps (steps) into step_params.json
Example:
Hint: Here we declare train_params, which is needed across substeps of model_train step.