You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We want Calibrators and Transformers to be trivially configurable and thus swappable. To do this, we need to make Transfomer.Config.parameters optional such that only some config fields are populated, e.g., polyfit degree, but not the actual polynomial coefficients.
Then, a calibrator would need measured_data (relates to #165) to call Transformer.fit to fit the measured data and generate the desired transformer parameters.
If both transformer optional params and calibrator optional measured data aren't present, obviously raise.
The text was updated successfully, but these errors were encountered:
We want Calibrators and Transformers to be trivially configurable and thus swappable. To do this, we need to make
Transfomer.Config.parameters
optional such that only some config fields are populated, e.g., polyfit degree, but not the actual polynomial coefficients.Then, a calibrator would need
measured_data
(relates to #165) to callTransformer.fit
to fit the measured data and generate the desired transformer parameters.If both transformer optional params and calibrator optional measured data aren't present, obviously raise.
The text was updated successfully, but these errors were encountered: