| Package | Description |
|---|---|
| org.apache.ignite.ml.nn |
Contains neural networks and related classes.
|
| org.apache.ignite.ml.regressions.linear |
Contains various linear regressions.
|
| Modifier and Type | Field and Description |
|---|---|
protected MultilayerPerceptron |
MultilayerPerceptron.below
MLP which is 'below' this MLP (i.e. below output goes to this MLP as input).
|
| Modifier and Type | Method and Description |
|---|---|
MultilayerPerceptron |
MultilayerPerceptron.add(MultilayerPerceptron above)
Create MLP where this MLP output is fed as input to added MLP.
|
<K,V> MultilayerPerceptron |
MLPTrainer.fit(DatasetBuilder<K,V> datasetBuilder,
IgniteBiFunction<K,V,double[]> featureExtractor,
IgniteBiFunction<K,V,double[]> lbExtractor)
Trains model based on the specified data.
|
MultilayerPerceptron |
MultilayerPerceptron.setBias(int layerIdx,
int neuronIdx,
double val)
Set the bias of given neuron in given layer.
|
MultilayerPerceptron |
MultilayerPerceptron.setBiases(int layerIdx,
Vector bias)
Sets the biases of layer with a given index.
|
MultilayerPerceptron |
MultilayerPerceptron.setParameters(Vector vector)
Set parameters.
|
MultilayerPerceptron |
MultilayerPerceptron.setWeight(int layerIdx,
int fromNeuron,
int toNeuron,
double val)
Set the weight of neuron with given index in previous layer to neuron with given index in given layer.
|
MultilayerPerceptron |
MultilayerPerceptron.setWeights(int layerIdx,
Matrix weights)
Sets the weighs of layer with a given index.
|
| Modifier and Type | Method and Description |
|---|---|
MultilayerPerceptron |
MultilayerPerceptron.add(MultilayerPerceptron above)
Create MLP where this MLP output is fed as input to added MLP.
|
| Constructor and Description |
|---|
MultilayerPerceptron(MultilayerPerceptron above,
MultilayerPerceptron below)
Create MLP from two MLPs: first stacked on second.
|
| Constructor and Description |
|---|
MLPTrainer(IgniteFunction<Dataset<EmptyContext,SimpleLabeledDatasetData>,MLPArchitecture> archSupplier,
IgniteFunction<Vector,IgniteDifferentiableVectorToDoubleFunction> loss,
UpdatesStrategy<? super MultilayerPerceptron,P> updatesStgy,
int maxIterations,
int batchSize,
int locIterations,
long seed)
Constructs a new instance of multilayer perceptron trainer.
|
MLPTrainer(MLPArchitecture arch,
IgniteFunction<Vector,IgniteDifferentiableVectorToDoubleFunction> loss,
UpdatesStrategy<? super MultilayerPerceptron,P> updatesStgy,
int maxIterations,
int batchSize,
int locIterations,
long seed)
Constructs a new instance of multilayer perceptron trainer.
|
| Constructor and Description |
|---|
LinearRegressionSGDTrainer(UpdatesStrategy<? super MultilayerPerceptron,P> updatesStgy,
int maxIterations,
int batchSize,
int locIterations,
long seed)
Constructs a new instance of linear regression SGD trainer.
|
Follow @ApacheIgnite
Ignite Fabric : ver. 2.6.0 Release Date : July 10 2018