Description Usage Arguments Details Value
View source: R/deepNeuralNetwork.predict.r
'deepNeuralNetwork.predict()' returns a prediction over the given data.
1 2 | deepNeuralNetwork.predict(model.trained, data = X.test,
standarization = NULL)
|
model.trained |
An object of class DeepNNModel containing a trained model. |
data |
Matrix containing the test data without the observed variable that we want to predict. |
standarization |
Character or list. Standarization method to be used. If a list of features (corresponding to rows in the input matrix) is supplied, a standarization feature-z-score is done. "r"=robust median z-score. "s"=standar mean z-score. |
This function will calculate a prediction using the supplied data. It performs the selected data standarization (beware that the input data must be standarized using the same method as in training) and returns the predicted values.
A vector or matrix containing the predicted values.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.