Base trait for quaternary transformers and models which take four input features and perform specified function on them to give a new output feature
Takes a four input features and performs a fit operation in order to define a transformation for those (or similar) features.
Takes a four input features and performs a fit operation in order to define a transformation for those (or similar) features. This abstract class should be extended when settable parameters are needed within the fit function
first input feature type
second input feature type
third input feature type
fourth input feature type
output feature type
Transformer that takes four input features and produces a single new output feature using the specified function.
Transformer that takes four input features and produces a single new output feature using the specified function. Performs row wise transformation specified in transformFn. This class should be extended when no parameters are needed within the transform function.
first input feature type
second input feature type
third input feature type
fourth input feature type
output feature type
Extend this class and return it from your QuaternaryEstimator fit function.
Extend this class and return it from your QuaternaryEstimator fit function. Takes four input features and produces a single new output feature using the specified function. Performs row wise transformation specified in transformFn.
first input type
second input type
third input type
fourth input type
output type
Transformer that takes four input features and produces a single new output feature using the specified function.
Transformer that takes four input features and produces a single new output feature using the specified function. Performs row wise transformation specified in transformFn. This abstract class should be extended when settable parameters are needed within the transform function.
first input feature type
second input feature type
third input feature type
fourth input feature type
output feature type
Base trait for quaternary transformers and models which take four input features and perform specified function on them to give a new output feature
first input feature type
second input feature type
third input feature type
fourth input feature type
output feature type