Input - Aster Analytics

Teradata AsterĀ® Analytics Foundation User GuideUpdate 2

Product
Aster Analytics
Release Number
7.00.02
Published
September 2017
Language
English (United States)
Last Update
2018-04-17
dita:mapPath
uce1497542673292.ditamap
dita:ditavalPath
AA-notempfilter_pdf_output.ditaval
dita:id
B700-1022
lifecycle
previous
Product Category
Software

The LoopyBeliefPropagation function has two required input tables, vertices and edges, and one optional input table, observation.

The following table describes the vertices table columns that you must or can specify in the function call. The table can have additional columns, but the function ignores them.

LoopyBeliefPropagation VerticesTable Schema
Column Name Data Type Description
vertex_key_column INTEGER Column that is, or is part of, the vertex key. Every column in the key appears in this table. Every variable is represented in the graph by a vertex.
accumulate_column Any Column to be copied to the output table.
The computational cost for each vertex is exponential in terms of in-degree. If any vertex has an in-degree greater than 20, the function may be very slow.

If variables are conditionally dependent on each other, their representative vertices are connected by edges. The edges table contains the columns that comprise the keys of the source and target vertices of the edges, and optionally, a column that contains the weights of the edges.

LoopyBeliefPropagation Edges Table Schema
Column Name Data Type Description
source_vertex_key_column INTEGER Column that is, or is part of, the key of the source vertex. Every column in the key appears in this table.
target_vertex_key_column INTEGER Column that is, or is part of, the key of the target vertex. Every column in the key appears in this table.
edge_weight DOUBLE PRECISION Optional column that contains the edge weights. The function uses only positive edge weights. The sum of the edge weights that the function uses must be 1.

The observations table contains the vertices (which represent variables) and the observations for observed variables.

LoopyBeliefPropagation Observation Table Schema
Column Name Data Type Description
vertex INTEGER Column that is, or is part of, the vertex key. Every column in the key appears in this table.
observation INTEGER For an observed variable: 1 or 0

For an unobserved variable: NULL