neural network target data

조회 수: 1 (최근 30일)
Ingrid
Ingrid 2015년 8월 28일
답변: Greg Heath 2015년 8월 29일
is it possible in matlab to have an aggregated target data
for example, my target data are average daily values but I want my neural network to predict hourly values since all my input is on an hourly time basis. Can I add a processing function to the output (like histc and accumarray to obtain the average daily values from hourly values) so that the NN is trained to the daily values that I have?
Below the bare bones of code of the NN I am currently using
net = fitnet(10);
[net,tr] = train(net,inputs,targets);
  댓글 수: 1
Greg Heath
Greg Heath 2015년 8월 28일
How is the averaging done?
y(i) = mean(x(i-11:i)
or
y(i) = mean(x(i-6:i+5))
?

댓글을 달려면 로그인하십시오.

채택된 답변

Greg Heath
Greg Heath 2015년 8월 29일
If you are going to try to predict hourly values, forget about your daily average data. I don't see it helping at all.
Just use the input-delay time series function
help timedelaynet
doc timedelaynet.
Hope this helps.
Thank you for formally accepting my answer
Greg

추가 답변 (0개)

카테고리

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