机器学习笔记之神经网络模型(二)

Model Representation II

To re-iterate, the following is an example of a neural network:

a(2)1=g(Θ(1)10x0+Θ(1)11x1+Θ(1)12x2+Θ(1)13x3)a(2)2=g(Θ(1)20x0+Θ(1)21x1+Θ(1)22x2+Θ(1)23x3)a(2)3=g(Θ(1)30x0+Θ(1)31x1+Θ(1)32x2+Θ(1)33x3)hΘ(x)=a(3)1=g(Θ(2)10a(2)0+Θ(2)11a(2)1+Θ(2)12a(2)2+Θ(2)13a(2)3)

In this section we'll do a vectorized implementation of the above functions. We're going to define a new variable  z(j)k  that encompasses the parameters inside our g function. In our previous example if we replaced by the variable z for all the parameters we would get:

a(2)1=g(z(2)1)a(2)2=g(z(2)2)a(2)3=g(z(2)3)

In other words, for layer j=2 and node k, the variable z will be:

z(2)k=Θ(1)k,0x0+Θ(1)k,1x1++Θ(1)k,nxn

The vector representation of x and  zj  is:

x=x0x1xnz(j)=z(j)1z(j)2z(j)n

Setting  x=a(1) , we can rewrite the equation as:

z(j)=Θ(j1)a(j1)

We are multiplying our matrix  Θ(j1)  with dimensions  sj×(n+1)  (where  sj  is the number of our activation nodes) by our vector  a(j1)  with height (n+1). This gives us our vector  z(j)  with height  sj . Now we can get a vector of our activation nodes for layer j as follows:

a(j)=g(z(j))

Where our function g can be applied element-wise to our vector  z(j) .

We can then add a bias unit (equal to 1) to layer j after we have computed  a(j) . This will be element  a(j)0  and will be equal to 1. To compute our final hypothesis, let's first compute another z vector:

z(j+1)=Θ(j)a(j)

We get this final z vector by multiplying the next theta matrix after  Θ(j1)  with the values of all the activation nodes we just got. This last theta matrix  Θ(j)  will have only one row which is multiplied by one column  a(j)  so that our result is a single number. We then get our final result with:

hΘ(x)=a(j+1)=g(z(j+1))

Notice that in this last step, between layer j and layer j+1, we are doing exactly the same thing as we did in logistic regression. Adding all these intermediate layers in neural networks allows us to more elegantly produce interesting and more complex non-linear hypotheses.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值