J'utilise un module externe (libsvm), qui ne prend pas en charge les tableaux numpy, seuls les tuples, listes et dicts. Mais mes données sont dans un 2d tableau numpy. Comment puis-je convertir des pythonic façon, aka sans boucles.
>>> import numpy
>>> array = numpy.ones((2,4))
>>> data_list = list(array)
>>> data_list
[array([ 1., 1., 1., 1.]), array([ 1., 1., 1., 1.])]
>>> type(data_list[0])
<type 'numpy.ndarray'> # <= what I don't want
# non pythonic way using for loop
>>> newdata=list()
>>> for line in data_list:
... line = list(line)
... newdata.append(line)
>>> type(newdata[0])
<type 'list'> # <= what I want