Skip to content

Commit

Permalink
feat : Modify Post
Browse files Browse the repository at this point in the history
FeedForward NeuralNet
  • Loading branch information
woongjoonchoi committed Dec 20, 2023
1 parent b8700b3 commit cc7f5ca
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@ NeuralNetwork를 인간이 이해할 수 있는 logic으로 표현하는 방법
다른 교육자료들을 보면 쉽게 설명하기 위해서 3개의 node로 한정짓거나 하는 방식으로 설명을 하게 됩니다. 하지만, 여기서는 일반식을 정의하기 위해서 $$ n^{[l]}$$개의 node의 대해서 설명을 하겠습니다. (bias는 그림에서만 생략하였습니다 . )

여기서 , $$z_{k,i}^{[l]}$$ 에는 $$ n^{[l-1]} $$개의 node가 연결되어 있습니다.
따라서 , $$z_{k,i}^{[l]} = \sum_{j=0}^n^{[l-1]} $$

$$z_{j,i}^{[l]} = \sum_{k=0}^{n^{[l-1]}} w_{j,k}^{[l]} \cdot a_{j,i}^{[l]} + b_{j}^{[l]} $$
따라서 , $$z_{j,i}^{[l]} = \sum_{k=0}^{n^{[l-1]}} w_{j,k}^{[l]} \cdot a_{j,i}^{[l]} + b_{j}^{[l]} $$


## Reference
Expand Down

0 comments on commit cc7f5ca

Please sign in to comment.