When storing calibration data, do not use complex objects (such as a scipy LinearRegression) into pkl files: if the scipy version is updated, then pkl may fail to re-open old pkl files if there are internal changes to the objects. Instead, use dicts of "calibration_parameter_name": value_f64, this will not break in the future :) .
When storing calibration data, do not use complex objects (such as a scipy LinearRegression) into pkl files: if the scipy version is updated, then pkl may fail to re-open old pkl files if there are internal changes to the objects. Instead, use dicts of
"calibration_parameter_name": value_f64
, this will not break in the future :) .