You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am very new to this.But I would like to know if there is a way to find out the next sequence of a dataset.
Assume I have this:
1,4,6,3,2,5,4,?
I would like to learn what is the sequence or number after this. Is that possible?
The text was updated successfully, but these errors were encountered:
Hi @sr13579 yes it's possible but it's not optimal. You can design a dataset such that the next value in the sequence is the label of the sample. If you need to project that out further into the sequence you could autoregress (feed the prediction back into the model to get the next value).
Having that said, we do not have any Learners that are designed specifically for sequences. There's been talk of implementing LSTM and VAR models though.
@rasaskate296
You need to give me a full details of your requirement. I can't actually say anything with that. I need insights on the data.
Perhaps you can hit my repo if you want.
I am very new to this.But I would like to know if there is a way to find out the next sequence of a dataset.
Assume I have this:
1,4,6,3,2,5,4,?
I would like to learn what is the sequence or number after this. Is that possible?
The text was updated successfully, but these errors were encountered: