Filter löschen
Filter löschen

Sliding Window (MACHINE LEARNING AND DEEPL LEARNING)

5 Ansichten (letzte 30 Tage)
Saif Aljanahi
Saif Aljanahi am 28 Apr. 2021
Beantwortet: Nazneen Kotwal am 4 Mär. 2022
I can't figure out what is the purpose of the sliding window in preprocessing time-series data like an accelerometer sensor.
I kinda stick here, I want to preprocess my data and apply it to DL/ML algorithms.
But I'm having a hard time understanding this.
are there any textbooks to understand this?
also now I'm struggling in writing a code to do a sliding window over raw sensor data and extract some features like (mean, std, var, median, max, min,...etc) and put them in a vector.
Any help is appreciated.
  2 Kommentare
Saif Aljanahi
Saif Aljanahi am 28 Apr. 2021
Please guys help me, I'm new to all that.
Manju Rana
Manju Rana am 3 Mär. 2022
I also need help for the same. I have raw data from IMU sensors. Now how to pre process it before applying ML algorithms

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Nazneen Kotwal
Nazneen Kotwal am 4 Mär. 2022
Given a sequence of numbers for a time series dataset, we can restructure the data to look like a supervised learning problem. The response will be based on the task you are trying to perform.
For example, to frame the task of Time series forecasting as a supervised learning problem, we can use previous time steps as features and use the next time step as the response variable. We can also use the previous time steps to extract relevant features (such as mean, max, etc) and use the next time step as the response variable. From what I understand, you would like to do the latter.
Data = (1:20)'; % Simple vector to verify output
myFunc = {@mean,@max,@min}; % Your functions
WindowLength = 5;
Features = zeros(length(Data)-WindowLength,length(myFunc));
for ij = 1: numel(myFunc)
fun = myFunc{ij};
for idx = 1:length(Data)-WindowLength
DataSubset = Data(idx:idx+WindowLength-1);
Features(idx,ij) = fun(DataSubset);
end
end
Response = Data(WindowLength+1: end);

Kategorien

Mehr zu Sequence and Numeric Feature Data Workflows finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by