ML icon indicating copy to clipboard operation
ML copied to clipboard

How can I do a sequence learning with Rubix-ML?

Open sr13579 opened this issue 3 years ago • 3 comments

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?

sr13579 avatar Jan 12 '22 19:01 sr13579

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.

andrewdalpino avatar May 27 '23 20:05 andrewdalpino