I have list with different element size. Here is the attachment for the reference:
As can be seen in the image, first list element size is1095, second 16, third 66, and so on. This List should now be converted to a NumPy array. As far as I know, all of the List's elements should be the same size for conversion. However, I've seen some stack overflow posts stack overflow posts where individuals converted a list of different element sizes to a NumPy array with Null or 0 values to to the elements in order to do the size uniform.
However, I do not want to change my data via adding any 0 or Null values. Because I need to input it into the deep model as is. Is there a method to convert a list of elements (different component sizes) to a NumPy array without changing the data?