- 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?
30 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Atharva
2023-9-12
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!
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Deep Learning Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!