Submitted by ole72444 t3_yuafo2 in deeplearning
HMasterSunday t1_iw9qr8l wrote
Reply to comment by sckuzzle in Making a model predict on the basis of a particular value by ole72444
Interesting, I didn't try a test run to time both approaches, I'll do that more often. As per your other point though, my code does account for that already, the number of individual cuts is 1/4 of the length of the full array (len(input_array)/4) so it splits it up into arrays of length 4 anyways. That much I do know at least.
sckuzzle t1_iwaia67 wrote
> As per your other point though, my code does account for that already
You may try running it? It returns [3.0, 8.0, 12.0, 8.0]. The intended output is [False, False, True, False]. OP didn't ask for it to be split into groups of four, they asked for every fourth value to be taken.
Viewing a single comment thread. View all comments