CMU 11-785 L20 Boltzmann machines 1

Hopfield网络是一种人工神经网络模型,用于存储和检索多个稳定状态,这些状态对应于训练模式。通过矩阵W的设计,可以确保目标模式的能量最低,从而在网络演化过程中稳定存在。训练过程涉及调整权重矩阵,使其最大化目标模式的能量并最小化非目标模式的能量。能量函数的优化可通过梯度下降等方法实现。此外,通过引入隐藏节点和利用'不关心'位,网络的存储容量可以增加。网络行为类似于玻尔兹曼机的退火动力学,其中模式的概率分布由能量函数决定。

Training hopfield nets

Geometric approach

  • W=YYT−NpI\mathbf{W}=\mathbf{Y} \mathbf{Y}^{T}-N_{p} \mathbf{I}W=YYTNpI

  • E(y)=yTWy\mathbf{E}(\mathbf{y})=\mathbf{y}^{T} \mathbf{W y}E(y)=yTWy

  • Sine : yT(YYT−NpI)y=yTYYTy−NNp\mathbf{y}^{T}\left(\mathbf{Y} \mathbf{Y}^{T}-N_{p} \mathbf{I}\right) \mathbf{y}=\mathbf{y}^{T} \mathbf{Y} \mathbf{Y}^{T} \mathbf{y}-N N_{p}yT(YYTNpI)y=yTYYTyNNp

  • So W is identical to behavior with W=YYT\mathbf{W}=\mathbf{Y} \mathbf{Y}^{T}W=YYT

    • Energy landscape only differs by an additive constant
    • Have the same eigen vectors

在这里插入图片描述

  • A pattern ypy_pyp is stored if:

    • sign⁡(Wyp)=y_p\operatorname{sign}\left(\mathbf{W} \mathbf{y}_{p}\right)=\mathbf{y}\_{p}sign(Wyp)=y_p for all target patterns
  • Training: Design WWW such that this holds

  • Simple solution: ypy_pyp is an Eigenvector of WWW

Storing k orthogonal patterns
  • Let Y=[y_1y_2…y_K]\mathbf{Y}=\left[\mathbf{y}\_{1} \mathbf{y}\_{2} \ldots \mathbf{y}\_{K}\right]Y=[y_1y_2y_K]
    • W=YΛYT\mathbf{W}=\mathbf{Y} \Lambda \mathbf{Y}^{T}W=YΛYT
    • λ1,...,λk\lambda_1,...,\lambda_kλ1,...,λk are positive
    • for λ1=λ2=λk=1\lambda_1= \lambda_2=\lambda_k= 1λ1=λ2=λk=1 this is exactly the Hebbian rule
  • Any pattern yyy can be written as
    • y=a1y1+a2y2+⋯+aNyN\mathbf{y}=a_{1} \mathbf{y}_{1}+a_{2} \mathbf{y}_{2}+\cdots+a_{N} \mathbf{y}_{N}y=a1y1+a2y2++aNyN
    • Wy=a1Wy1+a2Wy2+⋯+aNWyN=y\mathbf{W y}=a_{1} \mathbf{W y}_{1}+a_{2} \mathbf{W y}_{2}+\cdots+a_{N} \mathbf{W y}_{N} = yWy=a1Wy1+a2Wy2++aNWyN=y
  • All patterns are stable
    • Remembers everything
    • Completely useless network
  • Even if we store fewer than NNN patterns
    • Let Y=[y_1y_2…y_Kr_K+1r_K+2…r_N]Y=\left[\mathbf{y}\_{1} \mathbf{y}\_{2} \ldots \mathbf{y}\_{K} \mathbf{r}\_{K+1} \mathbf{r}\_{K+2} \ldots \mathbf{r}\_{N}\right]Y=[y_1y_2y_Kr_K+1r_K+2r_N]
    • W=YΛYTW=Y \Lambda Y^{T}W=YΛYT
    • r_K+1r_K+2…r_N\mathbf{r}\_{K+1} \mathbf{r}\_{K+2} \ldots \mathbf{r}\_{N}r_K+1r_K+2r_N are orthogonal to y1y2…yK\mathbf{y}_1 \mathbf{y}_2 \ldots \mathbf{y}_Ky1y2yK
    • λ1=λ2=λk=1\lambda_1= \lambda_2=\lambda_k= 1λ1=λ2=λk=1
    • Problem arise because eigen values are all 1.0
      • Ensures stationarity of vectors in the subspace
      • All stored patterns are equally important
General (nonorthogonal) vectors
  • wji=∑p∈{p}yipyjpw_{j i}=\sum_{p \in\{p\}} y_{i}^{p} y_{j}^{p}wji=p{p}yipyjp
  • The maximum number of stationary patterns is actually exponential in NNN (McElice and Posner, 84’)
  • For a specific set of KKK patterns, we can always build a network for which all KKK patterns are stable provided k≤Nk \le NkN
    • But this may come with many “parasitic” memories

Optimization

  • Energy function
    • E=−12yTWy−bTyE=-\frac{1}{2} \mathbf{y}^{T} \mathbf{W} \mathbf{y}-\mathbf{b}^{T} \mathbf{y}E=21yTWybTy
    • This must be maximally low for target patterns
    • Must be maximally high for all other patterns
      • So that they are unstable and evolve into one of the target patterns
  • Estimate WWW such that
    • EEE is minimized for y1,...,yPy_1,...,y_Py1,...,yP
    • EEE is maximized for all other yyy
  • Minimize total energy of target patterns
    • E(y)=−12yTWyW^=argmin⁡W∑y∈YPE(y)E(\mathbf{y})=-\frac{1}{2} \mathbf{y}^{T} \mathbf{W y} \quad \widehat{\mathbf{W}}=\underset{\mathbf{W}}{\operatorname{argmin}} \sum_{\mathbf{y} \in \mathbf{Y}_{P}} E(\mathbf{y})E(y)=21yTWyW=WargminyYPE(y)
    • However, might also pull all the neighborhood states down
  • Maximize the total energy of all non-target patterns
    • E(y)=−12yTWyE(\mathbf{y})=-\frac{1}{2} \mathbf{y}^{T} \mathbf{W} \mathbf{y}E(y)=21yTWy
    • W^=argmin⁡W∑y∈YPE(y)−∑y∉YPE(y)\widehat{\mathbf{W}}=\underset{\mathbf{W}}{\operatorname{argmin}} \sum_{\mathbf{y} \in \mathbf{Y}_{P}} E(\mathbf{y})-\sum_{\mathbf{y} \notin \mathbf{Y}_{P}} E(\mathbf{y})W=WargminyYPE(y)y/YPE(y)
  • Simple gradient descent
    • W=w+η(∑y∈YPyyT−∑y∉YPyyT)\mathbf{W}=\mathbf{w}+\eta\left(\sum_{\mathbf{y} \in \mathbf{Y}_{P}} \mathbf{y} \mathbf{y}^{T}-\sum_{\mathbf{y} \notin \mathbf{Y}_{P}} \mathbf{y} \mathbf{y}^{T}\right)W=w+η(yYPyyTy/YPyyT)

    • minimize the energy at target patterns

      • 在这里插入图片描述
    • raise all non-target patterns

      • Do we need to raise everything?
Raise negative class
  • Focus on raising the valleys

    • If you raise every valley, eventually they’ll all move up above the target patterns, and many will even vanish
    • 在这里插入图片描述
  • How do you identify the valleys for the current WWW?

    • 在这里插入图片描述

    • Initialize the network randomly and let it evolve

    • It will settle in a valley

在这里插入图片描述

  • Should we randomly sample valleys?

    • Are all valleys equally important?
    • Major requirement: memories must be stable
      • They must be broad valleys
    • 在这里插入图片描述
  • Solution: initialize the network at valid memories and let it evolve

    • It will settle in a valley
    • If this is not the target pattern, raise it
  • What if there’s another target pattern downvalley

    • 在这里插入图片描述

    • no need to raise the entire surface, or even every valley

      • Raise the neighborhood of each target memory
  • 在这里插入图片描述

Storing more than N patterns

在这里插入图片描述

  • Visible neurons
    • The neurons that store the actual patterns of interest
  • Hidden neurons
    • The neurons that only serve to increase the capacity but whose actual values are not important

在这里插入图片描述

  • The maximum number of patterns the net can store is bounded by the width NNN of the patterns…
  • So lets pad the patterns with KKK “don’t care” bits
    • The new width of the patterns is N+KN+KN+K
    • Now we can store N+KN+KN+K patterns!
  • Taking advantage of don’t care bits
    • Simple random setting of don’t care bits, and using the usual training and recall strategies for Hopfield nets should work
    • However, to exploit it properly, it helps to view the Hopfield net differently: as a probabilistic machine

A probabilistic interpretation

  • For binary y the energy of a pattern is the analog of the negative log likelihood of a Boltzmann distribution
    • Minimizing energy maximizes log likelihood
    • E(y)=−12yTWyP(y)=Cexp⁡(−E(y))E(\mathbf{y})=-\frac{1}{2} \mathbf{y}^{T} \mathbf{W y} \quad P(\mathbf{y})=\operatorname{Cexp}(-E(\mathbf{y}))E(y)=21yTWyP(y)=Cexp(E(y))

Boltzmann Distribution

  • E(y)=−12yTWy−bTyE(\mathbf{y})=-\frac{1}{2} \mathbf{y}^{T} \mathbf{W} \mathbf{y}-\mathbf{b}^{T} \mathbf{y}E(y)=21yTWybTy
  • P(y)=Cexp⁡(−E(y)kT)P(\mathbf{y})=\operatorname{Cexp}\left(\frac{-E(\mathbf{y})}{k T}\right)P(y)=Cexp(kTE(y))
  • C=1∑yexp⁡(−E(y)kT)C=\frac{1}{\sum_{\mathrm{y}} \exp \left(\frac{-E(\mathbf{y})}{k T}\right)}C=yexp(kTE(y))1
  • kkk is the Boltzmann constant, TTT is the temperature of the system
  • Optimizing WWW
    • E(y)=−12yTWyW^=argmin⁡W∑y∈YPE(y)−∑y∉YPE(y)E(\mathbf{y})=-\frac{1}{2} \mathbf{y}^{T} \mathbf{W} \mathbf{y} \quad \widehat{\mathbf{W}}=\underset{\mathbf{W}}{\operatorname{argmin}} \sum_{\mathbf{y} \in \mathbf{Y}_{P}} E(\mathbf{y})-\sum_{\mathbf{y} \notin \mathbf{Y}_{P}} E(\mathbf{y})E(y)=21yTWyW=WargminyYPE(y)y/YPE(y)
    • Simple gradient descent
    • W=W+η(∑y∈YPαyyyT−∑y∉YPβ(E(y))yyT)\mathbf{W}=\mathbf{W}+\eta\left(\sum_{\mathbf{y} \in \mathbf{Y}_{P}} \alpha_{\mathbf{y}} \mathbf{y} \mathbf{y}^{T}-\sum_{\mathbf{y} \notin \mathbf{Y}_{P}} \beta(E(\mathbf{y})) \mathbf{y} \mathbf{y}^{T}\right)W=W+η(yYPαyyyTy/YPβ(E(y))yyT)
    • αy\alpha_yαy more importance to more frequently presented memories
    • β(E(y))\beta (E(y))β(E(y)) more importance to more attractive spurious memories
    • Looks like an expectation
    • W=W+η(Ey∼YPyyT−Ey∼YyyT)\mathbf{W}=\mathbf{W}+\eta\left(E_{\mathbf{y} \sim \mathbf{Y}_{P}} \mathbf{y} \mathbf{y}^{T}-E_{\mathbf{y} \sim Y} \mathbf{y} \mathbf{y}^{T}\right)W=W+η(EyYPyyTEyYyyT)
  • The behavior of the Hopfield net is analogous to annealed dynamics of a spin glass characterized by a Boltzmann distribution
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值