Answers for ".flatten python"

3

numpy flatten

>>> a = np.array([[1,2], [3,4]])
>>> a.flatten()
array([1, 2, 3, 4])
>>> a.flatten('F')
array([1, 3, 2, 4])
Posted by: Guest on December-08-2020
1

flatten image python numpy

x_data = np.array( [np.array(cv2.imread(imagePath[i])) for i in range(len(imagePath))] )

  pixels = x_data.flatten().reshape(1000, 12288)
  print pixels.shape
Posted by: Guest on September-10-2020
0

flatten list python

def flatten(L):
    for item in L:
        try:
            yield from flatten(item)
        except TypeError:
            yield item

list(flatten([[[1, 2, 3], [4, 5]], 6]))
>>>[1, 2, 3, 4, 5, 6]
Posted by: Guest on August-21-2021
0

.flatten() python

>>> a = np.array([[1,2], [3,4]])
>>> a.flatten()
array([1, 2, 3, 4])
>>> a.flatten('F')
array([1, 3, 2, 4])
Posted by: Guest on June-10-2021
-2

flatten lists python

flat_list = []
for sublist in l:
    for item in sublist:
        flat_list.append(item)
Posted by: Guest on February-02-2020

Python Answers by Framework

Browse Popular Code Answers by Language