How to train a time series dataset ?
Show older comments
I have a data set with 2 columns (the first column is related to currents of a battery and the second column indicates the time seconds correspond to the current). what I want to do is training the currents data according to the time (second columns).I convert my data set in form of time-series object:
(ts = timeseries(datavals,timevals)). And now I want to train this object. However I am not sure whether it is possible or not and how can I do it.
I would appreciate any further help.
Accepted Answer
More Answers (3)
Majid Farzaneh
on 23 May 2018
Edited: Majid Farzaneh
on 23 May 2018
Hi, what's your purpose for training this data? A neural network can predict something for you. For example you can train the network by current as input and time as output, then use the network, give a current to it and it provides a time for you. This is a single input/ single output network and you can use a feedforwardnet like this:
net=feedforwardnet(10); % 10 is number of neurons in the first layer
net=train(net,inputs,targets);
Now you have a trained network and you can use it like this:
out=net(test_data)
Sara
on 23 May 2018
0 votes
4 Comments
Sara
on 23 May 2018
Majid Farzaneh
on 23 May 2018
Edited: Majid Farzaneh
on 23 May 2018
You're welcome. I've confused. Your trained network must recognize the input is current or not? or you want to estimate the value of current? If you want the first one, you have 2 possible outputs (1= is current, 0== is not current). But for this target you need more training data such as voltage or something else. So neural network can recognize patterns in currents vs times and something else vs times. Then when you give a new data to the network it can say your input is current or not. If you know Farsi, I can give you more help in Farsi.
Sara
on 23 May 2018
Majid Farzaneh
on 23 May 2018
Edited: Majid Farzaneh
on 23 May 2018
My comment in Persian considered as spam! Send your data if it's possible. I'll try to write a code for your purpose.
Greg Heath
on 23 May 2018
Edited: Greg Heath
on 23 May 2018
0 votes
Consider current as a function of time.
The rest should be straightforward using FITNET.
HOWEVER, YOU HAVE USED THE TERM TIMESERIES. THIS COULD IMPLY THAT EACH POINT BEYOND THE ITH DEPENDS ON THE PREVIOUS I VALUES AND NOT NECESSARILY EXPLICITLY ON TIME.
Thank you for formally accepting my answer
Greg
Categories
Find more on Sequence and Numeric Feature Data Workflows 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!