Skip to content

Latest commit

 

History

History
46 lines (34 loc) · 1.26 KB

power.md

File metadata and controls

46 lines (34 loc) · 1.26 KB
title
Power Layer

Power Layer

The Power layer computes the output as (shift + scale * x) ^ power for each input element x.

Parameters

{% highlight Protobuf %} {% include proto/PowerParameter.txt %} {% endhighlight %}

Sample

  layer {
    name: "layer"
    bottom: "in"
    top: "out"
    type: "Power"
    power_param {
      power: 1
      scale: 1
      shift: 0
    }
  }

See also