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:
- Feed the input data into this network to obtain predictions.
predictions = net(Inputs);