I have used nnstart neural network tools to predict NOx data using LM model. How do I export the predicted data to compare the predictions?

1 回表示 (過去 30 日間)
Aman A
Aman A 2024 年 1 月 22 日
回答済み: Tejas 2024 年 9 月 18 日
I have used nnstart neural network tools to predict NOx data using LM model. How do I export the predicted data to compare the predictions?

回答 (1 件)

Tejas
Tejas 2024 年 9 月 18 日
Hello Aman,
The 'nnstart' tool does not offer an option to directly export predictions. However, it is possible to export the trained network to the base workspace. Once exported, the trained network can be used to make predictions on input data.
Here is how to get predictions for input data:
  • Once the neural network model is trained, click on Export Model and choose Export to Workspace.
  • This action will create a structure named ‘results’ in the base workspace. Extract the trained network from this structure as shown below:
net = results.Network;
  • Feed the input data into this network to obtain predictions.
predictions = net(Inputs);

カテゴリ

Help Center および File ExchangeDeep Learning Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by