neural network time series "Export"
조회 수: 3 (최근 30일)
이전 댓글 표시
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?
댓글 수: 0
답변 (1개)
Venu
2024년 2월 16일
Hi @Michele
You can refer to these documentations
https://www.mathworks.com/help/deeplearning/ug/design-time-series-narx-feedback-neural-networks.html
Hope this helps!
댓글 수: 0
참고 항목
카테고리
Help Center 및 File 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!