C# Class numl.Math.Normalization.LogisticNormalizer

Logistic Feature normalizer using sigmoid function to scale features to be between 0 and 1.
Inheritance: INormalizer
ファイルを表示 Open project: sethjuarez/numl

Public Methods

Method Description
LogisticNormalizer ( ) : System

Initializes a new Logistic Feature Normalizer.

Normalize ( Vector row, numl properties ) : Vector

Normalize a row vector using Logistic normalization.

Method Details

LogisticNormalizer() public method

Initializes a new Logistic Feature Normalizer.
public LogisticNormalizer ( ) : System
return System

Normalize() public method

Normalize a row vector using Logistic normalization.
public Normalize ( Vector row, numl properties ) : Vector
row numl.Math.LinearAlgebra.Vector
properties numl
return numl.Math.LinearAlgebra.Vector