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 LDATopicPrinter function outputs a message and an output table.

LDATopicPrinter Output Message Schema
Column Name Data Type Description
message TEXT, VARCHAR, or VARCHAR(n) Reports this information about the model:

Number of topics

Number of unique words (vocabulary size)

Hyperparameter values (specified by LDATrainer arguments Alpha and Eta)

Number of training documents and words

Perplexity (defined in the Output section of the function LDATrainer)

The schema of the output table depends on the values of the arguments ShowSummary and OutputByWord. If ShowSummary is true, the function outputs only the preceding table.

LDATopicPrinter Output Table, ShowSummary('false') & OutputByWord('true')
Column Name Data Type Description
topicid INTEGER Topic identifier.
word TEXT, VARCHAR, or VARCHAR(n) Unique word that appears in topic.
wordweight DOUBLE PRECISION Optional. Weight (probability of occurrence) of word in topic. Weights for unique words in each topic are normalized to 1.
wordcount DOUBLE PRECISION Optional. Count (number of occurrences) of word in topic. Topic distribution is factored into word count.
LDATopicPrinter Output Table, ShowSummary('false') & OutputByWord('false')
Column Name Data Type Description
topicid INTEGER Unique topic identifier.
wordsequence TEXT, VARCHAR, or VARCHAR(n) Unique words that appear in topic, separated by commas.