neural network time series "Export"

2 次查看(过去 30 天)
Michele
Michele 2024-2-15
回答: Venu 2024-2-16
I'm using the Neural Network Time Series Tool.
I trained the NARX model.
I prepared the data of a csv file in X(features) ; T(Label) like this:
X = mydataset(:,[2:12]);
Y = mydataset(:,[13]);
X=table2array(X);
X=X';
Y=table2array(Y);
Y=Y';
X = con2seq(X);
T = con2seq(Y);
Then using the tool I trained the model.
Now I would like to export it, "Export" -> "Export Model" -> "export to workspace"
My question is how to use it to make forecasts on a new dataset?

回答(1 个)

Venu
Venu 2024-2-16

类别

Help CenterFile Exchange 中查找有关 Sequence and Numeric Feature Data Workflows 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by