⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 calc_mpe_given_inf_engine.m

📁 贝叶斯网络的matlab实现。可以创建贝叶斯网络、训练模型
💻 M
字号:
function [mpe, prob] = calc_mpe_given_inf_engine(engine, evidence)
% CALC_MPE_GIVEN_ENGINE Computes the most probable explanation of the evidence
% [mpe, prob] = calc_mpe_given_inf_engine(engine, evidence)
%
% INPUT
% engine must support max-propagation
% evidence{i} is the obsevred value of node i, or [] if hidden
%
% OUTPUT
% mpe(i) is the most likely value of node i
% prob is the likelihood of the globally best assignment
%
% This currently only works when all nodes are discrete

[engine, ll] = enter_evidence(engine, evidence);

observed = ~isemptycell(evidence);
N = length(evidence);
mpe = zeros(1,N);
for i=1:N
  m = marginal_nodes(engine, i);
  % discrete observed nodes are all set to 1 inside the inference engine, so we must undo this
  if observed(i)
    mpe(i) = evidence{i};
  else
    mpe(i) = argmax(m.T);
  end
end

bnet = bnet_from_engine(engine);
ll = log_lik_complete(bnet, num2cell(mpe(:)));
prob = exp(ll);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -