Gater function for mixture SVMs
gater(
x,
y,
S,
hidden,
learningrate = 0.01,
threshold = 0.01,
stepmax = 100,
verbose = verbose,
...
)
the nxp training data matrix. Could be a matrix or a sparse matrix object.
a response vector for prediction tasks with one value for each of the n rows of x
.
For classification, the values correspond to class labels and can be a 1xn matrix,
a simple vector or a factor. For regression, the values correspond to the values to predict,
and can be a 1xn matrix or a simple vector.
the prediction matrix from experts
the number of neurons in the hidden layer
the learningrate for the back propagation
neural network stops training once all gradient is below the threshold
the maximum iteration of the neural network training process
a logical value indicating whether to print information of training.
other parameters passing to neuralnet