ANN.training_model {machineLearning} R Documentation

create a new ANN training model

Description

Usage

ANN.training_model(inputSize, outputSize,
    hiddenSize = [100,30],
    learnRate = 0.1,
    momentum = 0.9,
    active = MLkit.activation,
    weight0 = "random",
    learnRateDecay = 1E-10,
    truncate = -1,
    split = FALSE);

Arguments

inputSize

the number of nodes for the input layer. [as integer]

outputSize

the number of nodes for the output layer. [as integer]

hiddenSize

the hiden size of nodes for each hidden layers

learnRate

[as double]

momentum

[as double]

active

[as activation]

weight0

-

learnRateDecay

[as double]

truncate

[as double]

Details

Authors

MLkit

Value

this function returns data object of type ANNTrainer.

clr value class

Examples


[Package machineLearning version 1.0.0.0 Index]