I've created a neural network using caret and nnet. Now, I need to deploy the NN in oracle for production. I already have the weights for each input and hidden layers. However, I'm not sure which was the activation function used. Is there any way to know? Or do you know an easier way to do this task?
This is code I used to develop the NN:
fitControl <- trainControl(
method = "cv",
number = 10)
nnet <- train(as.factor(TARGET) ~.-CONTRACT-MONTH-CUSTOMER,
data=stab_train_opt_norm,
method = "nnet",
trControl = fitControl)
From the
nnet
documentation in R: