How to give input from a database to a Neural network and save the result to a database?

2 views (last 30 days)
I have trained a Neural network for predicting credit card limits. I have saved the network with the work space with .mat extension. How can I give input from a database through web based GUI and get the result to the database again?

Accepted Answer

Greg Heath
Greg Heath on 2 Sep 2015
1. You have to load the input into the workspace of the directory containing the net. See the documentation
help load
doc load
2. output = net(input);
3. Save the output into desired workspace.
help save
doc save
Hope this helps. Greg

More Answers (0)

Categories

Find more on Deep Learning Toolbox in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!