Feature Extraction using deep autoencoder

조회 수: 16 (최근 30일)
Satz92
Satz92 2018년 12월 19일
편집: arahiche 2023년 9월 28일
I have filtered my ecg signal of 108000*1 length and then divided into blocks using window size of 64 samples each. Now i need to extract feature from each window using deep autoencoder in MATLAB. any help or idea how can i perform this? Thanks in advance.

답변 (1개)

BERGHOUT Tarek
BERGHOUT Tarek 2019년 4월 11일
1) you must create a data set of this windows , dataset =[window1;window2; window3 ...................].
2) train these dataset with an AES.
3) the hidden layer will be your new extructed dataset;
  댓글 수: 2
Shankar Parmar
Shankar Parmar 2022년 3월 4일
Sir,
How can I extract this Hidden Layer in MATLAB using
trainAutoencoder command.
arahiche
arahiche 2023년 9월 28일
편집: arahiche 2023년 9월 28일
To access the extracted features you need to use encode function.
here is an example;
hiddenSize = 100; % for example
AE_model = trainAutoencoder(Input_data,hiddenSize);
% you can view you model using this function
view(AE_model)
% To access the latent code generated
features = encode(AE_model,Input_data);

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Feature Detection and Extraction에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by