深度学习中的logits是什么?


在深度学习编码的过程中,常常会遇见一些变量名叫做logits,这个logits到底指代了一个什么东西呢?查阅资料之后,我在Google的machine learning文档中找到了定义:

Logits

The vector of raw (non-normalized) predictions that a classification model generates, which is ordinarily then passed to a normalization function. If the model is solving a multi-class classification problem, logits typically become an input to the softmax function. The softmax function then generates a vector of (normalized) probabilities with one value for each possible class.

In addition, logits sometimes refer to the element-wise inverse of the sigmoid function. For more information, see tf.nn.sigmoid_cross_entropy_with_logits.

代码实例如下:

暂时没有实例。


文章作者: CarlYoung
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 CarlYoung !
 上一篇
Python Collections Module Python Collections Module
Python语言在设计之初,使用了一个非常有用的特性叫做——modular programming(模块化编程)。基于这种语言特性,写程序就会像搭积木一样简单。而Python中实现模块化编程的工具有functions,modules,pac
2021-04-02
下一篇 
Pytorch里的CrossEntropyLoss详解 Pytorch里的CrossEntropyLoss详解
在使用Pytorch时经常碰见这些函数cross_entropy,CrossEntropyLoss, log_softmax, LogSoftmax。看得我头大,所以整理本文以备日后查阅。 首先要知道上面提到的这些函数一部分是来自于to
2021-04-02
  目录