博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
深度学习机器学习:softmax和log_softmax区分
阅读量:6260 次
发布时间:2019-06-22

本文共 1457 字,大约阅读时间需要 4 分钟。

softmax 函数

又称为 normalized exponential function:is a generalization of the logistic function that “squashes” a K-dimensional vector zof arbitrary real values to a K-dimensional vector σ(z) of real values in the range [0, 1] that add up to 1. The function is given by

σ(z)j=ezjKk=1ezkforj=1,,K.

很显然,这个式子将一个n维的张量输入转化为n维的数,其中每个数的范围为0-1,所有数加起来为1。可以理解为为一种概率分布(probability distribution),比如一个多 label 的分类任务(比如手写字符识别0-9),其结果对应着分类结果为j的概率。

In probability theory, the output of the softmax function can be used to represent a categorical distribution – that is, a probability distribution over K different possible outcomes. In fact, it is the gradient-log-normalizer of the categorical probability distribution.[further explanation needed]

The softmax function is used in various multiclass classification methods, such as multinomial logistic regression (also known as softmax regression)[1]:206–209 [1], multiclass linear discriminant analysis, naive Bayes classifiers, and artificial neural networks.[2] Specifically, in multinomial logistic regression and linear discriminant analysis, the input to the function is the result of K distinct linear functions, and the predicted probability for the j’th class given a sample vector x and a weighting vector w[further explanation needed] is:

下面这个函数是通过向量版的softmax,与之前不同的是这里的x、w是特定维数的向量,输入的向量都在k维的空间中。

P(y=jx)=ex
版权声明:转载请注明地址,博客换到www.oldpan.me,欢迎来访~ https://blog.csdn.net/IAMoldpan/article/details/78716280
文章标签:
个人分类:
你可能感兴趣的文章
MySql常用函数数学函数、加密函数等(转—收藏)
查看>>
CodeForces 797D Broken BST
查看>>
HDU 4089 Activation
查看>>
对MSRA-USTC 2011的 meng-meng(萌萌) 的team project的学习和评价
查看>>
COM逐步教程
查看>>
数据库改名系列(数据库名,逻辑名,物理文件名)
查看>>
新大陆。。?
查看>>
PING 命令中的TIL值
查看>>
U3D内存优化
查看>>
树的数据生成器
查看>>
Java进阶篇设计模式之二 ----- 工厂模式
查看>>
BZOJ1103 [POI2007]大都市
查看>>
cookies和session区别
查看>>
【Unity Shader】渲染管线
查看>>
杭电ACM--2002计算求得体积
查看>>
【洛谷1231】 教辅的组成(网络流)
查看>>
consul_nginx_uprsync动态负载均衡
查看>>
CentOS 7安装与配置JDK8
查看>>
异步导致UI句柄增加的解决办法
查看>>
2018.6.26 jq
查看>>