So basically I am dealing with a training and test data set (a bunch of arrays) with unequal length like these:
a: {true, [1,3, 4, 5, 5, 8 ,10 ,10]}
b: {true, [1,3, 25, 18 ,1 ,10]}
c: {false, [1, 8 ,10]}
d: {false, [1,3 ,10 ,10]}
I am new to machine learning area and I am stucked in how to make these un-equal length input arrays become equal length, thus can leverage existing machine learning algorithms easily..
Currently I can think to use Largest Common Sequence to find the similarity among input arrays with different lengths..
But basically after I got the LCS information, then how can I transform the input arrays into equal length ones..?
Am I on the right way? Could anyone give me some help?