- Load or Create Your ANN: You can create an ANN using MATLAB's Neural Network Toolbox or load a pre-trained network if you have one.
- Prepare Input Data: Make sure you have your input data ready in a suitable format. It should match the input layer of your ANN.
- Apply the ANN: Use the sim function to apply the ANN to your input data. For example, if your ANN is called net and your input data is stored in a variable inputData, you can use:
how can i look my predicted outputs from the trained neural network?
14 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
i have trained a network with 432 data sets with 5 types of input with one output now i have generated weight and bias and generated a equation i was validating the equation with predicted output. i want to look for the predicted output generated by the ANN. where can i find these?
0 Kommentare
Akzeptierte Antwort
Atharva
am 12 Sep. 2023
Hey Chetana,
I understand that you want to look for the predicted output generated by the ANN.
In MATLAB, you can find the predicted output generated by an Artificial Neural Network (ANN) by accessing the network's output after you've trained it or applied it to new data. Here are the general steps to find the predicted output:
>> outputData = sim(net, inputData);
This will produce outputData, which contains the predicted output generated by your ANN.
4. Access the Predicted Output: You can then access the predicted output in the outputData variable. The format and structure of this variable depend on your specific network and problem, but it should contain the predictions for your input data.
I hope this helps!
1 Kommentar
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Deep Learning Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!