tensorflow 函数接口的理解
1. tf.nn.softmax
- tf.nn.softmax(logits, dim=-1, name=None)
- w*x+b ⇒ logits
- softmax 函数执行的操作:exp(logits)/reduce_sum(exp(logits), dim)
声明:该文观点仅代表作者本人,牛骨文系教育信息发布平台,牛骨文仅提供信息存储空间服务。
- 上一篇: tensorflow c++接口编译
- 下一篇: Tensorflow C++ 学习(一) 搭建环境