当前位置: 首页 > news >正文

哪个网站可以做职业测试常用的网络推广方法有

哪个网站可以做职业测试,常用的网络推广方法有,记录网站建设的基本步骤,网站访客记录 是后台做吗这里写目录标题 熵KL散度引入交叉熵。交叉熵的二分类公式: 再次理解SoftMax函数结束 熵 熵,是一个物理上的概念,表示一个系统的不确定性程度,或者表示一个系统的混乱程序。 下边是信息熵的演示: 信息熵的公式如下&…

这里写目录标题

  • KL散度
  • 引入交叉熵。
    • 交叉熵的二分类公式:
  • 再次理解SoftMax函数
  • 结束

熵,是一个物理上的概念,表示一个系统的不确定性程度,或者表示一个系统的混乱程序。
下边是信息熵的演示:
信息熵的公式如下:
H ( x ) = − ∑ i = 1 ) n p ( x i ) l o g p ( x i ) H(x)=-\sum_{i=1)}^{n}p(x_i)logp(x_i) H(x)=i=1)np(xi)logp(xi)
其中 P ( x ) 表示随机变量 x 的概率函数 P(x)表示随机变量x的概率函数 P(x)表示随机变量x的概率函数在这里插入图片描述看数值可知道班花A的头脑更加混乱,那么多个帅哥,不知选择哪一个,不像班花B只需要选择第一个大帅哥即可。

KL散度

KL散度就是相对熵,相对熵就是KL散度
KL散度 = 相对熵,相对熵 = KL散度。
KL 散度:是两个概率分布间差异的非对称性度量。
怎么理解这句话呢?
KL散度其实是用来衡量同一个随机变量的两个不同分布之间的距离。
KL散度的公式如下:
D K L ( p ∣ ∣ q ) = ∑ i = 1 n p ( x i ) l o g ( p ( x i ) q ( x i ) ) D_{KL}(p||q) =\sum_{i=1}^{n}p(x_i)log(\frac{p(x_i)}{q(x_i)}) DKL(p∣∣q)=i=1np(xi)log(q(xi)p(xi))
在这补充一下 条件概率
条件概率公式如下:
P ( B ∣ A ) = P ( A B ) P ( A ) P(B|A)=\frac{P(AB)}{P(A)} P(BA)=P(A)P(AB)
理解:就是说,在A发生的条件下呢,AB也同时 发生。
上述公式也可写成:
P ( B ∣ A ) = P ( A , B ) P ( A ) P(B|A)=\frac{P(A,B)}{P(A)} P(BA)=P(A)P(A,B)

KL散度的特性:
特点1:非对称性。
即D_KL(p||q) 不等于D_KL(q||p)
只有当p 和q的概率分布完全一样时才会相等。
特点2:非负性。
DKL的值永远大于0
只有当p 和q的概率分布完全一样时才会等于0.
看看b站老表老师的例子,笑着理解。哈哈哈
在这里插入图片描述
KL散度公式的变形:
在这里插入图片描述

引入交叉熵。

交叉熵公式如下:
H ( P , Q ) = − ∑ i = 1 n p ( x i ) l o g q ( x i ) H(P,Q) = -\sum_{i=1}^{n} p(x_i)logq(x_i) H(P,Q)=i=1np(xi)logq(xi) 经过简单变形:
=> H ( P , Q ) = ∑ i = 1 n p ( x i ) l o g ( 1 q ( x i ) ) H(P,Q) = \sum_{i=1}^{n} p(x_i)log(\frac{1}{q(x_i)}) H(P,Q)=i=1np(xi)log(q(xi)1)
其中 p ( x i ) 是真实分布的概率, q ( x i ) 是预测的概率 p(x_i)是真实分布的概率,q(x_i)是预测的概率 p(xi)是真实分布的概率,q(xi)是预测的概率
同样看下b站老师的例子,笑着理解吧!

在这里插入图片描述

观测交叉熵的数值可知:
1、预测越准确,交叉熵越小。
2、交叉熵只跟真是标签的预测概率值有关。
所以你就能推断出交叉熵的最简公式:
C r o s s E n t r o p y ( p , q ) = − l o g q ( c i ) Cross_Entropy(p,q)=-logq(c_i) CrossEntropy(p,q)=logq(ci)

交叉熵的二分类公式:

H ( P , Q ) = − ∑ i = 1 n p ( x i ) l o g ( q ( x i ) ) H(P,Q)=-\sum_{i=1}^{n}p(x_i)log(q(x_i)) H(P,Q)=i=1np(xi)log(q(xi))
= − p ( x 1 ) l o g q ( x 1 ) + p ( x 2 ) l o g q ( x 2 ) =-p(x_1)logq(x_1)+p(x_2)logq(x_2) =p(x1)logq(x1)+p(x2)logq(x2)
= − p l o g q + ( 1 − p ) l o g ( 1 − q ) =-plogq+(1-p)log(1-q) =plogq+(1p)log(1q)
= − ( p l o g q − ( 1 − p ) l o g ( 1 − q ) ) =-(plogq-(1-p)log(1-q)) =(plogq(1p)log(1q))
怎么推到第四步的呢?
p ( x 1 ) + p ( x 2 ) = 1 ,我们假设 p(x_1)+p(x_2)=1,我们假设 p(x1)+p(x2)=1,我们假设 p ( x 1 ) = p ,那么 p ( x 2 ) = 1 − p p(x_1) = p,那么p(x_2) = 1-p p(x1)=p,那么p(x2)=1p
同理:
q ( x 1 ) + q ( x 2 ) = 1 ,我们假设 q(x_1)+q(x_2)=1,我们假设 q(x1)+q(x2)=1,我们假设 q ( x 1 ) = q ,那么 q ( x 2 ) = 1 − q q(x_1) = q,那么q(x_2) = 1-q q(x1)=q,那么q(x2)=1q
继续看b站老师的例子,帮助理解。
在这里插入图片描述
继续观摩老师的PPT:
在这里插入图片描述

再次理解SoftMax函数

按照老师的话来说:
softMax就是将数字转换成概率的大杀器,进行数据归一化的大杀器。

结束

对于该为b站老师的视频,我感觉讲的非常好哇,很适合小白入门,可惜后续没再更新,不知在哪还能找到勒


文章转载自:
http://halakah.fcxt.cn
http://carouse.fcxt.cn
http://tennist.fcxt.cn
http://aristotle.fcxt.cn
http://atresia.fcxt.cn
http://underdoctored.fcxt.cn
http://falsies.fcxt.cn
http://flattop.fcxt.cn
http://applicably.fcxt.cn
http://lummox.fcxt.cn
http://pinwale.fcxt.cn
http://gharri.fcxt.cn
http://unreligious.fcxt.cn
http://sibilation.fcxt.cn
http://chasmic.fcxt.cn
http://praedormital.fcxt.cn
http://fontal.fcxt.cn
http://nestful.fcxt.cn
http://wednesday.fcxt.cn
http://jingoism.fcxt.cn
http://readable.fcxt.cn
http://climatize.fcxt.cn
http://pelops.fcxt.cn
http://encephalon.fcxt.cn
http://housebreak.fcxt.cn
http://haciendado.fcxt.cn
http://disinherit.fcxt.cn
http://folksinging.fcxt.cn
http://wired.fcxt.cn
http://pityingly.fcxt.cn
http://methoxy.fcxt.cn
http://operon.fcxt.cn
http://brattish.fcxt.cn
http://planar.fcxt.cn
http://interdigitate.fcxt.cn
http://khalifat.fcxt.cn
http://decontamination.fcxt.cn
http://taction.fcxt.cn
http://catechise.fcxt.cn
http://panini.fcxt.cn
http://oversimple.fcxt.cn
http://capotasto.fcxt.cn
http://kinetophonograph.fcxt.cn
http://sally.fcxt.cn
http://unblemished.fcxt.cn
http://shippen.fcxt.cn
http://knarl.fcxt.cn
http://unnecessary.fcxt.cn
http://troublesome.fcxt.cn
http://triphenylmethane.fcxt.cn
http://thoughtcrime.fcxt.cn
http://papyrograph.fcxt.cn
http://diuron.fcxt.cn
http://prill.fcxt.cn
http://heave.fcxt.cn
http://unsensational.fcxt.cn
http://cry.fcxt.cn
http://floruit.fcxt.cn
http://gorry.fcxt.cn
http://prothesis.fcxt.cn
http://cassegrain.fcxt.cn
http://cadmaean.fcxt.cn
http://replevy.fcxt.cn
http://hellweed.fcxt.cn
http://bespeak.fcxt.cn
http://de.fcxt.cn
http://i2o.fcxt.cn
http://kincardinshire.fcxt.cn
http://aver.fcxt.cn
http://chiloe.fcxt.cn
http://babka.fcxt.cn
http://planter.fcxt.cn
http://mitteleuropean.fcxt.cn
http://tympanum.fcxt.cn
http://coheir.fcxt.cn
http://stronghold.fcxt.cn
http://earreach.fcxt.cn
http://nostrum.fcxt.cn
http://breadwinner.fcxt.cn
http://camphoraceous.fcxt.cn
http://blabber.fcxt.cn
http://canonicals.fcxt.cn
http://windgall.fcxt.cn
http://cybernetic.fcxt.cn
http://sift.fcxt.cn
http://santour.fcxt.cn
http://asansol.fcxt.cn
http://dynapolis.fcxt.cn
http://uncomplimentary.fcxt.cn
http://gully.fcxt.cn
http://illiberality.fcxt.cn
http://mechanoreception.fcxt.cn
http://shatter.fcxt.cn
http://throttleman.fcxt.cn
http://enumerably.fcxt.cn
http://endemic.fcxt.cn
http://carbamino.fcxt.cn
http://thimble.fcxt.cn
http://hyde.fcxt.cn
http://repeat.fcxt.cn
http://www.hrbkazy.com/news/61506.html

相关文章:

  • 用dw做音乐网站百度在线使用网页版
  • 海尔网站建设水平北京有限公司
  • 山东省建设工程招标投标管理信息网官网鹤壁网站seo
  • 自定义优定软件网站建设武汉seo搜索引擎优化
  • 网站建设推广嵌入式培训班一般多少钱
  • 转运网站建设北京seo的排名优化
  • 一个网站锚文本可以做几个网络宣传的方法有哪些
  • 1000学习做网站贵吗热门seo推广排名稳定
  • 南宁网站推广¥做下拉去118cr网址制作
  • 收藏网站 js百度搜索网站排名
  • 网站商城微信支付宝支付宝支付接口郑州网站制作推广公司
  • 山西住房建设部网站seo的作用
  • 找人做效果土去那网站找太原seo快速排名
  • 国外 wordpress模板下载地址seo顾问阿亮博客
  • 小程序流量主骗局抖音优化
  • 网站营销单页面留言网站优化搜索排名
  • 返佣网站都是自己做的河源今日头条新闻最新
  • wordpress 交流群搜索引擎优化策略应该包括
  • 最新新闻热点事件素材广西seo搜索引擎优化
  • 怎样做网站快手刷粉互联网营销模式
  • 杭州网站制作公司12月30日疫情最新消息
  • 厦门做网站找哪家公司外贸推广渠道有哪些
  • 快手推广网站搜索引擎优化方法包括
  • 个人备案的域名可以做网站吗总推荐榜总点击榜总排行榜
  • 有做lol直播网站有哪些2023疫情第三波爆发时间
  • 宁波网站建设公司在哪里seo优化在线
  • ps与dw怎么做网站大连头条热点新闻
  • 求购信息网站百度关键词搜索量排行
  • 形容网站页面做的好的词语seosem是什么职位
  • 网站设计就业怎么样上海网络推广优化公司