update(_:withPreprocessed:eventHandler:)
Updates a transformer with a new sequence of preprocessed features.
Declaration
func update<InputSequence>(_ transformer: inout PreprocessingUpdatableEstimator<Preprocessor, Estimator>.Transformer, withPreprocessed preprocessed: InputSequence, eventHandler: EventHandler? = nil) async throws where InputSequence : Sequence, Preprocessor.Output == InputSequence.Element, InputSequence.Element == Estimator.Transformer.InputParameters
- transformer:
A transformer to update.
- preprocessed:
A sequence of preprocessed features.
- eventHandler:
An event handler.