Sofmax.md 718 字节
Newer Older
S
sunyanfang01 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
## Sofmax


### [Softmax](http://caffe.berkeleyvision.org/tutorial/layers/softmax.html)
```
layer {
    name: "softmax"
    type: "Softmax"
    bottom: "fc"
    top: "softmax"	
}
```


S
SunAhong1993 已提交
15
### [paddle.fluid.layers.softmax](http://paddlepaddle.org/documentation/docs/zh/1.4/api_cn/layers_cn.html#permalink-168-softmax)
S
sunyanfang01 已提交
16 17 18
```python
paddle.fluid.layers.softmax(
    input, 
S
SunAhong1993 已提交
19 20 21
    use_cudnn=False, 
    name=None,
    axis=-1
S
sunyanfang01 已提交
22 23 24 25
)
```  

### 功能差异
J
Jason 已提交
26 27
#### 计算机制
Caffe:计算softmax之前,对每个样本中的每个值减去该样本中的最大值;                 
S
sunyanfang01 已提交
28
PaddlePaddle:省略了这一操作直接计算softmax。
S
SunAhong1993 已提交
29 30
#### 使用机制
PaddlePaddle:通过设置`axis`来确定执行softmax的维度索引。