I am running the following command on R:
tg <- expand.grid(layer1 = 22, layer2 =0, layer3 =0)
tc <- trainControl(method = "repeatedcv" , number = 7, repeats = 5)
registerDoMC(cores = 30)
Model <- train( x~ ., data, method ="neuralnet", trControl = tc, tuneGrid = tg)
I am running the above on 32 cores, 64 Gb RAM on amazon instance. The issue is that code runs for 2 hours with no output. When i change method to "nnet" it runs normally( i know that neuralnet requires more processing)
But i would stay for 2 hours with no outputs for "neuralnet" and "qrnn" Is this normal? Or there is something i do not know?