Class UniformScale
Maps values of a feature to a specific range and another proportional.
BaseDimension: feature modelled the base dimension of the scaling.
ProportionalDimension: feature modelled the dimension scaled proportionally to the base dimension.
BaseDimensionOutput: output feature for scaled BaseDimension
ProportionalDimensionOutput: output feature for scaled ProportionalDimension
Inherited Members
Namespace: SigStat.Common.PipelineItems.Transforms.Preprocessing
Assembly: SigStat.Common.dll
Syntax
public class UniformScale : PipelineBase, ILoggerObject, IProgress, ITransformation, IPipelineIO
Properties
| Improve this Doc View SourceBaseDimension
Gets or sets the base dimension.
Declaration
public FeatureDescriptor<List<double>> BaseDimension { get; set; }
Property Value
Type | Description |
---|---|
FeatureDescriptor<List<System.Double>> |
BaseDimensionOutput
Gets or sets the output base dimension output.
Declaration
public FeatureDescriptor<List<double>> BaseDimensionOutput { get; set; }
Property Value
Type | Description |
---|---|
FeatureDescriptor<List<System.Double>> |
NewMaxBaseValue
Upper bound of the interval, in which the base dimension will be scaled
Declaration
public double NewMaxBaseValue { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
NewMinBaseValue
Lower bound of the interval, in which the base dimension will be scaled
Declaration
public double NewMinBaseValue { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
NewMinProportionalValue
Lower bound of the interval, in which the proportional dimension will be scaled
Declaration
public double NewMinProportionalValue { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
ProportionalDimension
Gets or sets the ProportionalDimension.
Declaration
public FeatureDescriptor<List<double>> ProportionalDimension { get; set; }
Property Value
Type | Description |
---|---|
FeatureDescriptor<List<System.Double>> |
ProportionalDimensionOutput
Gets or sets the output proportional dimension output.
Declaration
public FeatureDescriptor<List<double>> ProportionalDimensionOutput { 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. |