博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
多项式前k项和java_多项式朴素贝叶斯softmax改变
阅读量:5740 次
发布时间:2019-06-18

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

您可以使用以下方法为每个 class 设置日志可能性:

_joint_log_likelihood(self, X):

"""Compute the unnormalized posterior log probability of X

I.e. ``log P(c) + log P(x|c)`` for all rows x of X, as an array-like of

shape [n_classes, n_samples].

Input is passed to _joint_log_likelihood as-is by predict,

predict_proba and predict_log_proba.

"""

朴素贝叶斯predict_log_proba只需通过上面的函数归一化即可 .

def predict_log_proba(self, X):

"""

Return log-probability estimates for the test vector X.

Parameters

----------

X : array-like, shape = [n_samples, n_features]

Returns

-------

C : array-like, shape = [n_samples, n_classes]

Returns the log-probability of the samples for each class in

the model. The columns correspond to the classes in sorted

order, as they appear in the attribute `classes_`.

"""

jll = self._joint_log_likelihood(X)

# normalize by P(x) = P(f_1, ..., f_n)

log_prob_x = logsumexp(jll, axis=1)

return jll - np.atleast_2d(log_prob_x).T

转载地址:http://vbnzx.baihongyu.com/

你可能感兴趣的文章
Mysql查询
查看>>
数据传输流程和socket简单操作
查看>>
ProbS CF matlab源代码(二分系统)(原创作品,转载注明出处,谢谢!)
查看>>
OC中KVC的注意点
查看>>
JQ入门(至回调函数)
查看>>
【洛天依】几首歌的翻唱(无伴奏)
查看>>
OpenSSL初瞻及本系列的博文的缘由
查看>>
ISO8583接口的详细资料
查看>>
tmux不自动加载配置文件.tmux.conf
查看>>
经验分享:JavaScript小技巧
查看>>
[MOSEK] Stupid things when using mosek
查看>>
程序实例---栈的顺序实现和链式实现
查看>>
服务的使用
查看>>
Oracle 用户与模式
查看>>
MairDB 初始数据库与表 (二)
查看>>
拥在怀里
查看>>
chm文件打开,有目录无内容
查看>>
whereis、find、which、locate的区别
查看>>
一点不懂到小白的linux系统运维经历分享
查看>>
桌面支持--打不开网页上的pdf附件解决办法(ie-tools-compatibility)
查看>>