博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Probabilistic Graphical Models-Template Models
阅读量:6469 次
发布时间:2019-06-23

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

factor(a function/table)是对于variables(the scope of the factor)的某种combination的fitness。在BN中factor就是conditional probability distribution(CPD);但factor并不总对应着某种概率(当然也不一定取0~1),比如说在MRF中。和数据库table的操作类似,factor上的基本操作有factor product ,factor marginalization & factor reduction。

 

实际中最常用的模型大概是含有shared structure和shared parameters的模型,比如说NLP里面的sequence model,举一个做Named entity recognition的例子,联系着latent变量的参数(type of entity),是independent of the place and the sequence的(假设position in the sequence与参数无关),这样的好处是:

  • reuse of parameters
  • allow us to apply the same model to sequences of varying length

 

Template models are languages that specify how variables inherit dependency model from template(representation that allows us to solve multiple problems using the same exact model)

  • parameters are shared not just between models but also within the model
  • Template models are a convenient way of representing Bayesian networks that have a high amount of parameter sharing and structure. (allow us to construct large models from sparse parameterization and entire family of models from a single concise representation)
  • At the end of the day, however, they are merely compact representations of a fully unrolled Bayesian network, and thus have no additional representative powers.
  • Dynamic BNs are intended for dealing with temporal processes,for example,where we have replication over time.
  • we have a range of languages for Object-relational models,both directed models(plate models) and undirected models, where you have multiple objects.

Advantages of template models:

  • Template variable(ground variables/concrete instantiations of variables) are instantiated/duplicated multiple times. CPDs in template models can often be copied many times.
  • Template models can often capture events that occur in a time series.
  • Template models can capture parameter sharing within a model.

转载于:https://www.cnblogs.com/wei-li/archive/2012/03/20/2407271.html

你可能感兴趣的文章
彻底学会使用epoll(一)——ET模式实现分析
查看>>
路由器的密码恢复
查看>>
【Android 基础】Android中全屏或者取消标题栏
查看>>
Xilinx 常用模块汇总(verilog)【03】
查看>>
脱离标准文档流(2)---定位
查看>>
IO流之字符流
查看>>
集合异常之List接口
查看>>
Softmax回归
查看>>
紫书 习题11-11 UVa 1644 (并查集)
查看>>
App工程结构搭建:几种常见Android代码架构分析
查看>>
使用openssl进行证书格式转换
查看>>
ZOJ 3777 Problem Arrangement
查看>>
HTML中动态生成内容的事件绑定问题【转载】
查看>>
虚拟机类加载机制
查看>>
Callable和Future
查看>>
installshield12如何改变默认安装目录
查看>>
少用数字来作为参数标识含义
查看>>
ScrollView中嵌套ListView
查看>>
JAVA虚拟机05--面试必问之JVM原理
查看>>
Algs4-2.3.1如何切分数组
查看>>