Exp.md 677 字节
Newer Older
S
sunyanfang01 已提交
1 2 3 4 5 6 7 8 9 10
## Exp


### [Exp](http://caffe.berkeleyvision.org/tutorial/layers/exp.html)
```
layer {
    name: "exp"
    type: "Exp"
    bottom: "data"
    top: "exp"	
S
SunAhong1993 已提交
11
    exp_param {
S
sunyanfang01 已提交
12 13 14 15 16 17 18 19
	base: -1
	scale: 1
	shift: 0
    }
}
```


S
SunAhong1993 已提交
20
### [paddle.fluid.layers.exp](http://paddlepaddle.org/documentation/docs/zh/1.4/api_cn/layers_cn.html#permalink-196-exp)
S
sunyanfang01 已提交
21 22 23
```python
paddle.fluid.layers.exp(
    x,
S
SunAhong1993 已提交
24
    name=None
S
sunyanfang01 已提交
25 26 27 28
)
```  

### 功能差异
J
Jason 已提交
29
#### 计算机制
S
sunyanfang01 已提交
30 31 32
Caffe:有三个关于计算的参数,其计算公式为:  
$$
y=\begin{cases}
S
SunAhong1993 已提交
33 34
e^{(shift+scale \times x)},\quad x\leq 0 \\\\
base^{(shift+scale \times x)},\quad x>0
S
sunyanfang01 已提交
35 36 37 38 39 40
\end{cases}
$$
         

PaddlePaddle:计算公式为:$$y=e^x$$