未验证 提交 b4b7bdbd 编写于 作者: J Jason 提交者: GitHub

Delete tf.nn.softmax.md

上级 12b49f23
## tf.nn.softmax
### [tf.nn.softmax](https://www.tensorflow.org/api_docs/python/tf/nn/softmax)
``` python
tf.nn.softmax(
logits,
axis=None,
name=None,
dim=None
)
```
### [paddle.fluid.layers.softmax](http://paddlepaddle.org/documentation/docs/zh/1.3/api_cn/layers_cn.html#paddle.fluid.layers.softmax)
``` python
paddle.fluid.layers.softmax(
input,
use_cudnn=True,
name=None
)
```
### 功能差异
#### 计算方式
TensorFlow: 通过`axis`参数,在指定维度上进行计算,如若`axis``None`,则表示在最后一维上进行计算;
PaddlePaddle:仅在最后一维上进行计算。
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册