Class LDA
- All Implemented Interfaces:
Serializable
,org.apache.spark.internal.Logging
,LDAParams
,Params
,HasCheckpointInterval
,HasFeaturesCol
,HasMaxIter
,HasSeed
,DefaultParamsWritable
,Identifiable
,MLWritable
Terminology: - "term" = "word": an element of the vocabulary - "token": instance of a term appearing in a document - "topic": multinomial distribution over terms representing some concept - "document": one piece of text, corresponding to one row in the input data
Original LDA paper (journal version): Blei, Ng, and Jordan. "Latent Dirichlet Allocation." JMLR, 2003.
Input data (featuresCol):
LDA is given a collection of documents as input data, via the featuresCol parameter.
Each document is specified as a Vector
of length vocabSize, where each entry is the
count for the corresponding term (word) in the document. Feature transformers such as
Tokenizer
and CountVectorizer
can be useful for converting text to word count vectors.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.apache.spark.internal.Logging
org.apache.spark.internal.Logging.LogStringContext, org.apache.spark.internal.Logging.SparkShellLoggingFilter
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal IntParam
Param for set checkpoint interval (>= 1) or disable checkpoint (-1).Creates a copy of this instance with the same UID and some extra params.final DoubleArrayParam
Concentration parameter (commonly named "alpha") for the prior placed on documents' distributions over topics ("theta").Param for features column name.Fits a model to the input data.final IntParam
k()
Param for the number of topics (clusters) to infer.final BooleanParam
For EM optimizer only:LDAParams.optimizer()
= "em".final DoubleParam
For Online optimizer only:LDAParams.optimizer()
= "online".final DoubleParam
For Online optimizer only:LDAParams.optimizer()
= "online".static LDA
final IntParam
maxIter()
Param for maximum number of iterations (>= 0).final BooleanParam
For Online optimizer only (currently):LDAParams.optimizer()
= "online".Optimizer or inference algorithm used to estimate the LDA model.read()
final LongParam
seed()
Param for random seed.setCheckpointInterval
(int value) setDocConcentration
(double value) setDocConcentration
(double[] value) setFeaturesCol
(String value) The features for LDA should be aVector
representing the word counts in a document.setK
(int value) setKeepLastCheckpoint
(boolean value) setLearningDecay
(double value) setLearningOffset
(double value) setMaxIter
(int value) setOptimizeDocConcentration
(boolean value) setOptimizer
(String value) setSeed
(long value) setSubsamplingRate
(double value) setTopicConcentration
(double value) setTopicDistributionCol
(String value) final DoubleParam
For Online optimizer only:LDAParams.optimizer()
= "online".final String[]
Supported values for ParamLDAParams.optimizer()
.final DoubleParam
Concentration parameter (commonly named "beta" or "eta") for the prior placed on topics' distributions over terms.Output column with estimates of the topic mixture distribution for each document (often called "theta" in the literature).transformSchema
(StructType schema) Check transform validity and derive the output schema from the input schema.uid()
An immutable unique ID for the object and its derivatives.Methods inherited from class org.apache.spark.ml.PipelineStage
params
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.spark.ml.util.DefaultParamsWritable
write
Methods inherited from interface org.apache.spark.ml.param.shared.HasCheckpointInterval
getCheckpointInterval
Methods inherited from interface org.apache.spark.ml.param.shared.HasFeaturesCol
getFeaturesCol
Methods inherited from interface org.apache.spark.ml.param.shared.HasMaxIter
getMaxIter
Methods inherited from interface org.apache.spark.ml.util.Identifiable
toString
Methods inherited from interface org.apache.spark.ml.clustering.LDAParams
getDocConcentration, getK, getKeepLastCheckpoint, getLearningDecay, getLearningOffset, getOldDocConcentration, getOldOptimizer, getOldTopicConcentration, getOptimizeDocConcentration, getOptimizer, getSubsamplingRate, getTopicConcentration, getTopicDistributionCol, validateAndTransformSchema
Methods inherited from interface org.apache.spark.internal.Logging
initializeForcefully, initializeLogIfNecessary, initializeLogIfNecessary, initializeLogIfNecessary$default$2, isTraceEnabled, log, logDebug, logDebug, logDebug, logDebug, logError, logError, logError, logError, logInfo, logInfo, logInfo, logInfo, logName, LogStringContext, logTrace, logTrace, logTrace, logTrace, logWarning, logWarning, logWarning, logWarning, org$apache$spark$internal$Logging$$log_, org$apache$spark$internal$Logging$$log__$eq, withLogContext
Methods inherited from interface org.apache.spark.ml.util.MLWritable
save
Methods inherited from interface org.apache.spark.ml.param.Params
clear, copyValues, defaultCopy, defaultParamMap, explainParam, explainParams, extractParamMap, extractParamMap, get, getDefault, getOrDefault, getParam, hasDefault, hasParam, isDefined, isSet, onParamChange, paramMap, params, set, set, set, setDefault, setDefault, shouldOwn
-
Constructor Details
-
LDA
-
LDA
public LDA()
-
-
Method Details
-
read
-
load
-
k
Description copied from interface:LDAParams
Param for the number of topics (clusters) to infer. Must be > 1. Default: 10. -
docConcentration
Description copied from interface:LDAParams
Concentration parameter (commonly named "alpha") for the prior placed on documents' distributions over topics ("theta").This is the parameter to a Dirichlet distribution, where larger values mean more smoothing (more regularization).
If not set by the user, then docConcentration is set automatically. If set to singleton vector [alpha], then alpha is replicated to a vector of length k in fitting. Otherwise, the
LDAParams.docConcentration()
vector must be length k. (default = automatic)Optimizer-specific parameter settings: - EM - Currently only supports symmetric distributions, so all values in the vector should be the same. - Values should be greater than 1.0 - default = uniformly (50 / k) + 1, where 50/k is common in LDA libraries and +1 follows from Asuncion et al. (2009), who recommend a +1 adjustment for EM. - Online - Values should be greater than or equal to 0 - default = uniformly (1.0 / k), following the implementation from here.
- Specified by:
docConcentration
in interfaceLDAParams
- Returns:
- (undocumented)
-
topicConcentration
Description copied from interface:LDAParams
Concentration parameter (commonly named "beta" or "eta") for the prior placed on topics' distributions over terms.This is the parameter to a symmetric Dirichlet distribution.
Note: The topics' distributions over terms are called "beta" in the original LDA paper by Blei et al., but are called "phi" in many later papers such as Asuncion et al., 2009.
If not set by the user, then topicConcentration is set automatically. (default = automatic)
Optimizer-specific parameter settings: - EM - Value should be greater than 1.0 - default = 0.1 + 1, where 0.1 gives a small amount of smoothing and +1 follows Asuncion et al. (2009), who recommend a +1 adjustment for EM. - Online - Value should be greater than or equal to 0 - default = (1.0 / k), following the implementation from here.
- Specified by:
topicConcentration
in interfaceLDAParams
- Returns:
- (undocumented)
-
supportedOptimizers
Description copied from interface:LDAParams
Supported values for ParamLDAParams.optimizer()
.- Specified by:
supportedOptimizers
in interfaceLDAParams
-
optimizer
Description copied from interface:LDAParams
Optimizer or inference algorithm used to estimate the LDA model. Currently supported (case-insensitive): - "online": Online Variational Bayes (default) - "em": Expectation-MaximizationFor details, see the following papers: - Online LDA: Hoffman, Blei and Bach. "Online Learning for Latent Dirichlet Allocation." Neural Information Processing Systems, 2010. See here - EM: Asuncion et al. "On Smoothing and Inference for Topic Models." Uncertainty in Artificial Intelligence, 2009. See here
-
topicDistributionCol
Description copied from interface:LDAParams
Output column with estimates of the topic mixture distribution for each document (often called "theta" in the literature). Returns a vector of zeros for an empty document.This uses a variational approximation following Hoffman et al. (2010), where the approximate distribution is called "gamma." Technically, this method returns this approximation "gamma" for each document.
- Specified by:
topicDistributionCol
in interfaceLDAParams
- Returns:
- (undocumented)
-
learningOffset
Description copied from interface:LDAParams
For Online optimizer only:LDAParams.optimizer()
= "online".A (positive) learning parameter that downweights early iterations. Larger values make early iterations count less. This is called "tau0" in the Online LDA paper (Hoffman et al., 2010) Default: 1024, following Hoffman et al.
- Specified by:
learningOffset
in interfaceLDAParams
- Returns:
- (undocumented)
-
learningDecay
Description copied from interface:LDAParams
For Online optimizer only:LDAParams.optimizer()
= "online".Learning rate, set as an exponential decay rate. This should be between (0.5, 1.0] to guarantee asymptotic convergence. This is called "kappa" in the Online LDA paper (Hoffman et al., 2010). Default: 0.51, based on Hoffman et al.
- Specified by:
learningDecay
in interfaceLDAParams
- Returns:
- (undocumented)
-
subsamplingRate
Description copied from interface:LDAParams
For Online optimizer only:LDAParams.optimizer()
= "online".Fraction of the corpus to be sampled and used in each iteration of mini-batch gradient descent, in range (0, 1].
Note that this should be adjusted in synch with
LDA.maxIter
so the entire corpus is used. Specifically, set both so that maxIterations * miniBatchFraction greater than or equal to 1.Note: This is the same as the
miniBatchFraction
parameter inOnlineLDAOptimizer
.Default: 0.05, i.e., 5% of total documents.
- Specified by:
subsamplingRate
in interfaceLDAParams
- Returns:
- (undocumented)
-
optimizeDocConcentration
Description copied from interface:LDAParams
For Online optimizer only (currently):LDAParams.optimizer()
= "online".Indicates whether the docConcentration (Dirichlet parameter for document-topic distribution) will be optimized during training. Setting this to true will make the model more expressive and fit the training data better. Default: false
- Specified by:
optimizeDocConcentration
in interfaceLDAParams
- Returns:
- (undocumented)
-
keepLastCheckpoint
Description copied from interface:LDAParams
For EM optimizer only:LDAParams.optimizer()
= "em".If using checkpointing, this indicates whether to keep the last checkpoint. If false, then the checkpoint will be deleted. Deleting the checkpoint can cause failures if a data partition is lost, so set this bit with care. Note that checkpoints will be cleaned up via reference counting, regardless.
See
DistributedLDAModel.getCheckpointFiles
for getting remaining checkpoints andDistributedLDAModel.deleteCheckpointFiles
for removing remaining checkpoints.Default: true
- Specified by:
keepLastCheckpoint
in interfaceLDAParams
- Returns:
- (undocumented)
-
checkpointInterval
Description copied from interface:HasCheckpointInterval
Param for set checkpoint interval (>= 1) or disable checkpoint (-1). E.g. 10 means that the cache will get checkpointed every 10 iterations. Note: this setting will be ignored if the checkpoint directory is not set in the SparkContext.- Specified by:
checkpointInterval
in interfaceHasCheckpointInterval
- Returns:
- (undocumented)
-
seed
Description copied from interface:HasSeed
Param for random seed. -
maxIter
Description copied from interface:HasMaxIter
Param for maximum number of iterations (>= 0).- Specified by:
maxIter
in interfaceHasMaxIter
- Returns:
- (undocumented)
-
featuresCol
Description copied from interface:HasFeaturesCol
Param for features column name.- Specified by:
featuresCol
in interfaceHasFeaturesCol
- Returns:
- (undocumented)
-
uid
Description copied from interface:Identifiable
An immutable unique ID for the object and its derivatives.- Specified by:
uid
in interfaceIdentifiable
- Returns:
- (undocumented)
-
setFeaturesCol
The features for LDA should be aVector
representing the word counts in a document. The vector should be of length vocabSize, with counts for each term (word).- Parameters:
value
- (undocumented)- Returns:
- (undocumented)
-
setMaxIter
-
setSeed
-
setCheckpointInterval
-
setK
-
setDocConcentration
-
setDocConcentration
-
setTopicConcentration
-
setOptimizer
-
setTopicDistributionCol
-
setLearningOffset
-
setLearningDecay
-
setSubsamplingRate
-
setOptimizeDocConcentration
-
setKeepLastCheckpoint
-
copy
Description copied from interface:Params
Creates a copy of this instance with the same UID and some extra params. Subclasses should implement this method and set the return type properly. SeedefaultCopy()
. -
fit
Description copied from class:Estimator
Fits a model to the input data. -
transformSchema
Description copied from class:PipelineStage
Check transform validity and derive the output schema from the input schema.We check validity for interactions between parameters during
transformSchema
and raise an exception if any parameter value is invalid. Parameter value checks which do not depend on other parameters are handled byParam.validate()
.Typical implementation should first conduct verification on schema change and parameter validity, including complex parameter interaction checks.
- Specified by:
transformSchema
in classPipelineStage
- Parameters:
schema
- (undocumented)- Returns:
- (undocumented)
-