Class StandardScaler
- java.lang.Object
-
- org.nd4j.linalg.dataset.api.iterator.StandardScaler
-
@Deprecated public class StandardScaler extends Object
Deprecated.
-
-
Constructor Summary
Constructors Constructor Description StandardScaler()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidfit(DataSetIterator iterator)Deprecated.Fit the given modelvoidfit(DataSet dataSet)Deprecated.INDArraygetMean()Deprecated.INDArraygetStd()Deprecated.voidload(File mean, File std)Deprecated.Load the given mean and stdvoidsave(File mean, File std)Deprecated.Save the current mean and stdvoidtransform(DataSet dataSet)Deprecated.Transform the data
-
-
-
Method Detail
-
fit
public void fit(DataSet dataSet)
Deprecated.
-
fit
public void fit(DataSetIterator iterator)
Deprecated.Fit the given model- Parameters:
iterator- the data to iterate oer
-
load
public void load(File mean, File std) throws IOException
Deprecated.Load the given mean and std- Parameters:
mean- the mean filestd- the std file- Throws:
IOException
-
save
public void save(File mean, File std) throws IOException
Deprecated.Save the current mean and std- Parameters:
mean- the meanstd- the std- Throws:
IOException
-
transform
public void transform(DataSet dataSet)
Deprecated.Transform the data- Parameters:
dataSet- the dataset to transform
-
getMean
public INDArray getMean()
Deprecated.
-
getStd
public INDArray getStd()
Deprecated.
-
-