ML
ML copied to clipboard
How can I do a sequence learning with Rubix-ML?
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?
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.