How are normalize the inputs and outputs in Neural Networks in Matlab (in mathematical form or code please)?
조회 수: 6 (최근 30일)
이전 댓글 표시
How are normalize the inputs and outputs in Neural Networks in Matlab (in mathematical form or code please)?
댓글 수: 0
답변 (1개)
Walter Roberson
2015년 6월 8일
The formula is given in the documentation you were referred to by Greg when you asked how to normalize the inputs.
Algorithm
It is assumed that X has only finite real values, and that the elements of each row are not all equal. (If xmax=xmin or if either xmax or xmin are non-finite, then y=x and no change occurs.)
y = (ymax-ymin)*(x-xmin)/(xmax-xmin) + ymin;
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!