Iñigo Hidalgo
04/26/2023, 3:16 PMsimple_conn_pt_model_filter_predict:
date_column: date
window_length: 0d
gap: 0d
check_groups: null
continue_if_missing: true
I am trying to edit the parameter gap
through kedro run --pipeline ... --params=...
, but I need to overwrite the whole dictionarySajid Alam
04/26/2023, 3:55 PM--params
flag as you've shown above is a reasonable way to operate, especially when you only have a few parameters to update. Just be aware that you need to provide all the key-value pairs for the new dictionary, even if only one key-value pair is changed.Iñigo Hidalgo
04/26/2023, 4:35 PM