I have trained a basic back-propagation neural network in R using a training data set and validated using a test set. The neural net is giving me satisfactory results.
Now what I want to do is to use this trained neural network (and the determined weights ) in a C++ code, so that I can put the input variables in the C++ code and it gives me the prediction output.
Most of the tutorial I find regarding the implementation of Neural Network in C++ is about training a network itself, and not really using for prediction.
How do I do this? I feel since the hard part(training the NN) is already done in R, implementing the NN in C++ shouldn't be very difficult. Maybe I'm missing some key concepts?