Package | Description |
---|---|
deepnetts.data.norm |
Data normalization methods, used to scale data to specific range, in order to make them suitable for use by a neural network.
|
deepnetts.net |
Neural network architectures with their corresponding builders.
|
Modifier and Type | Class and Description |
---|---|
class |
DecimalScaler
Decimal scale normalization for the given data set.
|
class |
MaxScaler
Performs max normalization, rescales data to corresponding max value in each column.
|
class |
MinMaxScaler
Performs Min Max normalization on the given data set.
|
class |
RangeScaler
Normalize data set to specified range.
|
class |
Standardizer
Performs standardization on inputs in order to get desired statistical properties of the data set (zero mean and one standard deviation).
|
Modifier and Type | Method and Description |
---|---|
AbstractScaler |
NeuralNetwork.getNormalizer()
Returns data normalization method that is applied to network's inputs.
|
Modifier and Type | Method and Description |
---|---|
void |
NeuralNetwork.setNormalizer(AbstractScaler normalizer)
Sets normalization data normalization method that is applied to network's inputs.
|
Copyright © 2022. All rights reserved.