필터 지우기
필터 지우기

Implementation of neural network equation

조회 수: 2 (최근 30일)
jalpa shah
jalpa shah 2016년 9월 29일
댓글: mohit deshmukh 2017년 4월 12일
I am getting different output for neural network : O=purelin(W2*logsig(W1i*Xi+B1)+B2) when i implement in matlab and when i do it mathamatically in excel sheet. How to implement the equations of neural netwok. Actually I want to use this equation without using matlab once network is trained and tested.

채택된 답변

Greg Heath
Greg Heath 2016년 9월 30일
The N I-dimensional "I"nputs are normalized from x to xn The N O-dimensional "O"utput targets are normalized from t to tn
The O-dimensional NORMALIZED targets are obtained from
yn = B2 + LW*logsig( B1 + IW * xn );
The final O-dimensional unnormalized outputs, y, are obtained from yn via the inverse tsetting of the original t to tn normalization of the target.
Hope this helps.
Thank you for formally accepting my answer
Greg
  댓글 수: 1
mohit deshmukh
mohit deshmukh 2017년 4월 12일
How can I get the preprocessing setting of the trained neural network. As I have tried the way it is explained above but still the answer is deviating. I normalised manually.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by