怎么新建SeriesNetwork啊?一次性划分好维度?。
Show older comments
daylength=20;
%% 使用TrainNetwork训练LSTM网络
rmse=zeros(daylength,1);
for i=1:daylength
net(i) = trainNetwork(XTrain,YTrain(i,:),layers,options);
YPred = predict(net(i),XTrain);
rmse(i)=sqrt(mean((YTrain(i,:)-YPred).^2));
end
这样一个训练得出20个net~是一个1*20的维度~
net(i) = trainNetwork(XTrain,YTrain(i,:),layers,options);
这句matlab提示要我改~因为每次运行维度都改~我想事先划分好维度~
但是net是SeriesNetwork这类~我不知道怎么新建
Accepted Answer
More Answers (0)
Categories
Find more on FPGA, ASIC, and SoC Development in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!