Automatic sample split

I have more than 2500 samples of accelerometer data each of around 15000ms. I want to split the samples into 2000ms of autodetected events. I can do it one by one at the Data Acquisition page. Is there any way to do it automatically for all samples?

Yeah:

  1. Iterate over all samples with the API: https://docs.edgeimpulse.com/reference#listsamples
  2. Use this API to find segments in a sample: https://docs.edgeimpulse.com/reference#findsegmentsinsample
  3. Then call https://docs.edgeimpulse.com/reference#segmentsample with the segments to split them up
1 Like

Thanks I will try soon!