|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Object org.apache.spark.ml.PipelineStage org.apache.spark.ml.Estimator<Word2VecModel> org.apache.spark.ml.feature.Word2Vec
public final class Word2Vec
:: Experimental ::
Word2Vec trains a model of Map(String, Vector)
, i.e. transforms a word into a code for further
natural language processing or machine learning process.
Constructor Summary | |
---|---|
Word2Vec()
|
|
Word2Vec(String uid)
|
Method Summary | |
---|---|
Word2Vec |
copy(ParamMap extra)
Creates a copy of this instance with the same UID and some extra params. |
Word2VecModel |
fit(DataFrame dataset)
Fits a model to the input data. |
int |
getMinCount()
|
int |
getNumPartitions()
|
int |
getVectorSize()
|
IntParam |
minCount()
The minimum number of times a token must appear to be included in the word2vec model's vocabulary. |
IntParam |
numPartitions()
Number of partitions for sentences of words. |
Word2Vec |
setInputCol(String value)
|
Word2Vec |
setMaxIter(int value)
|
Word2Vec |
setMinCount(int value)
|
Word2Vec |
setNumPartitions(int value)
|
Word2Vec |
setOutputCol(String value)
|
Word2Vec |
setSeed(long value)
|
Word2Vec |
setStepSize(double value)
|
Word2Vec |
setVectorSize(int value)
|
StructType |
transformSchema(StructType schema)
:: DeveloperApi :: |
String |
uid()
|
StructType |
validateAndTransformSchema(StructType schema)
Validate and transform the input schema. |
IntParam |
vectorSize()
The dimension of the code that you want to transform from words. |
Methods inherited from class org.apache.spark.ml.Estimator |
---|
fit, fit, fit, fit |
Methods inherited from class Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
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, paramMap, params, set, set, set, setDefault, setDefault, setDefault, shouldOwn, validateParams |
Methods inherited from interface org.apache.spark.Logging |
---|
initializeIfNecessary, initializeLogging, isTraceEnabled, log_, log, logDebug, logDebug, logError, logError, logInfo, logInfo, logName, logTrace, logTrace, logWarning, logWarning |
Constructor Detail |
---|
public Word2Vec(String uid)
public Word2Vec()
Method Detail |
---|
public String uid()
public Word2Vec setInputCol(String value)
public Word2Vec setOutputCol(String value)
public Word2Vec setVectorSize(int value)
public Word2Vec setStepSize(double value)
public Word2Vec setNumPartitions(int value)
public Word2Vec setMaxIter(int value)
public Word2Vec setSeed(long value)
public Word2Vec setMinCount(int value)
public Word2VecModel fit(DataFrame dataset)
Estimator
fit
in class Estimator<Word2VecModel>
dataset
- (undocumented)
public StructType transformSchema(StructType schema)
PipelineStage
Derives the output schema from the input schema.
transformSchema
in class PipelineStage
schema
- (undocumented)
public Word2Vec copy(ParamMap extra)
Params
copy
in interface Params
copy
in class Estimator<Word2VecModel>
extra
- (undocumented)
defaultCopy()
public IntParam vectorSize()
public int getVectorSize()
public IntParam numPartitions()
public int getNumPartitions()
public IntParam minCount()
public int getMinCount()
public StructType validateAndTransformSchema(StructType schema)
schema
- (undocumented)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |