View source: R/NeuralNetworkModel.r
NeuralNetworkModel | R Documentation |
A function to train an artificial neural network model to classify medulloblastoma subgroups using DNA methylation beta values (Illumina Infinium HumanMethylation450). Prediction is followed by training if new data is provided.
Epochs |
The number of epochs. |
NewData |
A methylation beta values input from the ReadMethylFile function. |
InstallTensorFlow |
Logical. Running this function for the first time, you need to install TensorFlow library (V 2.10-cpu). Default is TRUE. |
A list
## Not run:
set.seed(1234)
ann <- NeuralNetworkModel(Epochs = 100,
NewData = NULL,
InstallTensorFlow = TRUE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.