Contractive autoencoders

버전 1.2.0 (44.5 KB) 작성자: BERGHOUT Tarek
in these codes a set of functions created to fully train a Contractive Autoencoder.
다운로드 수: 341
업데이트 날짜: 2019/4/18

라이선스 보기

Contractive autoencoder CAE adds an explicit regularizer in their objective function that forces the model to learn a function that is robust to slight variations of input values. This regularizer corresponds to the Frobenius norm of the Jacobian matrix of the encoder activations with respect to the input. The CAE in this code uses Extreme Learning Machine to minimize the following objective function:
RMSE((f(H+lamda*norm((Dx'.*HT'),'fro'))*Beta)-Targets)

(The parameters of the function are explained inside the code).
The uploaded file contains:
1- An ordinary AE which can be used for comparison.
2- Contractive AE function.
3- Jacobian matrix function downloaded from this link :
https://www.mathworks.com/matlabcentral/fileexchange/13490-adaptive-robust-numerical-differentiation
4- Data normalization function.
To learn about the CAES you can start with this tutorial:
https://www.youtube.com/watch?v=79sYlJ8Cvlc&feature=youtu.be

인용 양식

BERGHOUT Tarek (2024). Contractive autoencoders (https://www.mathworks.com/matlabcentral/fileexchange/71257-contractive-autoencoders), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2019a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.2.0

some comments updated

1.1.0

the optimization equation is:B=pinv((H+lamda*norm((Dx'.*HT'),'fro'))') * X ;
and not H=radbas(H+lamda*norm((Dx'.*HT'),'fro'))'), am sorry ,it is corrected now .

1.0.0