Class Scale
Maps values of a feature to a specific range.
InputFeature: feature to be scaled.
OutputFeature: output feature for scaled InputFeature
Inherited Members
Namespace: SigStat.Common.PipelineItems.Transforms.Preprocessing
Assembly: SigStat.Common.dll
Syntax
public class Scale : PipelineBase, ILoggerObject, IProgress, ITransformation, IPipelineIO
Properties
| Improve this Doc View SourceInputFeature
Gets or sets the input feature.
Declaration
public FeatureDescriptor<List<double>> InputFeature { get; set; }
Property Value
Type | Description |
---|---|
FeatureDescriptor<List<System.Double>> |
Mode
Type of the scaling which defines the scaling behavior
Declaration
public ScalingMode Mode { get; set; }
Property Value
Type | Description |
---|---|
ScalingMode |
OutputFeature
Gets or sets the output feature.
Declaration
public FeatureDescriptor<List<double>> OutputFeature { get; set; }
Property Value
Type | Description |
---|---|
FeatureDescriptor<List<System.Double>> |
Methods
| Improve this Doc View SourceTransform(Signature)
Executes the transform on the signature
parameter.
This function gets called by the pipeline.
Declaration
public void Transform(Signature signature)
Parameters
Type | Name | Description |
---|---|---|
Signature | signature | The Signature with a set of features to be transformed. |