zoukankan      html  css  js  c++  java
  • Some Simple Models of Neurons

    Linear neuron:

    [y=b+sumlimits_i{x_i w_i} ]

    Binary threshold neuron:

    [z = sumlimits_i{x_i w_i} ]

    [y=left{egin{aligned} 1,~~~~~~~zgt heta \ 0,otherwiseend{aligned} ight. ]

    也可以写作:

    [z = sumlimits_i{x_i w_i} ]

    [y=left{egin{aligned} 1,~~~~~~~zgt 0 \ 0, otherwiseend{aligned} ight. ]

    Rectified linear neuron:

    [z=b+sumlimits_i{x_i w_i} ]

    [y=left{egin{aligned} 1,~~~~~~~zgt 0 \ 0, otherwiseend{aligned} ight. ]

    Sigmoid neuron:

    [z=b+sumlimits_i{x_i w_i} ]

    [y=frac{1}{1+e^{-z}} ]

    Stochastic binary neuron:

    we treat the output of the logistic as the probability of producing (s=1).

    [z = sumlimits_i{x_i w_i} ]

    [P(s=1)=frac{1}{1+e^{-z}} ]

    Note:

    1. (x): neuron input.
    2. (w): input weight matrix.
    3. (b): bias term.
    4. (y): neuron output .
  • 相关阅读:
    border-radius
    border-style
    border-width
    border
    max-width
    min-width
    clip 语法
    left
    z-index
    position
  • 原文地址:https://www.cnblogs.com/ZJUT-jiangnan/p/5489092.html
Copyright © 2011-2022 走看看