This is trainData
[[-214. -153. -58. ..., 36. 191. -37.]
[-139. -73. -1. ..., 11. 76. -14.]
[ -76. -49. -307. ..., 41. 228. -41.]
...,
[ -32. -49. 49. ..., -26. 133. -32.]
[-124. -79. -37. ..., 39. 298. -3.]
[-135. -186. -70. ..., -12. 790. -10.]]
This is target
[[0], [0], [0], [0], [0], [0], [0], [0], [0], [0], [0], [0], [0], [0], [0], [0], [0], [0], [0], [0], [0], [0], [0], [0], [0], [0], [0], [1], [1], [1], [1], [1], [1], [1], [1], [1], [1], [1]]
I want to create a numpy array using trainData and target which looks like this
[
[[-214. -153. -58. ..., 36. 191. -37.], [0]]
[[-139. -73. -1. ..., 11. 76. -14.], [0]]
[[ -76. -49. -307. ..., 41. 228. -41.], [0]]
...,
[[ -32. -49. 49. ..., -26. 133. -32.], [1]]
[[-124. -79. -37. ..., 39. 298. -3.], [1]]
[[-135. -186. -70. ..., -12. 790. -10.], [1]]
]