Output - 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 HMMUnsupervisedLearner function outputs console messages and generates the following three tables through JDBC:

  • Initial-state probability table
  • State-transition probability table
  • Emission probability table
HMMUnsupervisedLearner Console Message Table Schema
Column Data Type Description
message VARCHAR Console message that describes the output.
HMMUnsupervisedLearner Initial-State Probability Table
Column Data Type Description
model_attribute BIGINT, INTEGER, or VARCHAR The name of the column that contains the model attribute, specified by the ModelColumn attribute.
state VARCHAR The hidden state of the learned HMM.
probability DOUBLE PRECISION The initial state probability determined by the function.
HMMUnsupervisedLearner State-Transition Probability Table
Column Data Type Description
model_attribute BIGINT, INTEGER, or VARCHAR The name of the column that contains the model attribute, specified by the ModelColumn attribute.
from_state VARCHAR The hidden state of the learned HMM, from which a transition emanates.
to_state VARCHAR The hidden state of the learned HMM, to which a transition is made.
probability DOUBLE PRECISION The probability of a transition from the from_state to the to_state.
HMMUnsupervisedLearner Observation Probability Table
Column Data Type Description
model_attribute BIGINT, INTEGER, or VARCHAR The name of the column that contains the model attribute, specified by the ModelColumn attribute.
state VARCHAR The hidden state of the learned HMM.
observed_key_attribute VARCHAR An observed symbol found in the observed_id column of the input table.
probability DOUBLE PRECISION The probability of emitting an observed symbol given that the HMM is in a hidden state.