フィルターのクリア

How to extract results of ANN ?

26 ビュー (過去 30 日間)
Priyadarshan Priyadarshan
Priyadarshan Priyadarshan 2022 年 12 月 1 日
コメント済み: Walter Roberson 2023 年 11 月 26 日
So i created a simple model using Neural Network Fitting. Trained and obtained good results. But how to extract the 'values' which are given by ANN ? In earlier version 2019 of matlab when expoerting the esults, the outputs were also given so that one can realise and appreciate the difference.
The current export options only gives the parameters, but not the exact values given by ANN. Can someone please guide me on this....?
  1 件のコメント
Priyadarshan Priyadarshan
Priyadarshan Priyadarshan 2022 年 12 月 2 日
編集済み: Priyadarshan Priyadarshan 2022 年 12 月 2 日
Can you help me on this ? @Adam Danz @Eric Delgado @Walter Roberson

サインインしてコメントする。

回答 (1 件)

Sourabh
Sourabh 2023 年 3 月 23 日
Hi Priyadarshan,
When you train a neural network using MATLAB's Neural Network Fitting tool, you have the option to export the network to your workspace which gives you a struct array with the trained network and results.
This struct array has two fields, “Network” and “TrainingResults”, which you can access using dot notation.
You can simulate this trained network on new input data using the “sim” function in MATLAB. The sim function takes the trained network and the input data as inputs and returns the output values predicted by the network.
You might find this example demonstrating Neural Network Fitting App useful:
Hope this helps!
  2 件のコメント
Sunita
Sunita 2023 年 11 月 26 日
hi, can u explain how to extract data from the struct array.

サインインしてコメントする。

Community Treasure Hunt

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

Start Hunting!

Translated by