I have deployed my Edge Impulse to my Arduino Nano 33 BLE Sense (Rev1). As per the Edge Impulse documentation, I have copied the raw features from the Live Classification page, into the features array on Arduino IDE. However I am receiving the following error:
The size of your 'features' array is not correct. Expected 2000 items, but had 4500
Edge Impulse standalone inferencing (Arduino)
My window size is 5000ms, and my window increase is 2500ms. All the data has been taken at 100Hz frequency. I’m using 4 sensors in my spectral analysis - accX, accZ, gyrY, gyrZ. So it makes sense that its expecting 2000 items ((100 * 5 ) * 4). The input axes in the time series data column however have 9 input axes - all 3 accelerometers, all 3 gyros, and all 3 magnetometers. Is that why my live classification is outputting 4500 features?
How can I fix this?