Class Normalize
Maps values of a feature to 0.0 - 1.0 range.
Pipeline Input type: List{double}
Default Pipeline Output: (List{double}) NormalizationResult
Inherited Members
Namespace: SigStat.Common.Transforms
Assembly: SigStat.Common.dll
Syntax
public class Normalize : PipelineBase, ILoggerObject, IProgress, ITransformation, IPipelineIO
Remarks
This is a specific case of the Map transform.
Properties
| Improve this Doc View SourceInput
Input
Declaration
public FeatureDescriptor<List<double>> Input { get; set; }
Property Value
Type | Description |
---|---|
FeatureDescriptor<List<System.Double>> |
Output
Output
Declaration
public FeatureDescriptor<List<double>> Output { 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. |