public class Word2VecParametersV3 extends ModelParametersSchemaV3
| Modifier and Type | Field and Description |
|---|---|
int |
epochs
Number of training iterations to run
|
float |
initLearningRate
Set the starting learning rate
|
int |
minWordFreq
This will discard words that appear less than
|
Word2VecNormModel |
normModel
Use Hierarchical Softmax
|
FrameKeyV3 |
preTrained
Id of a data frame that contains a pre-trained (external) word2vec model
|
float |
sentSampleRate
Set threshold for occurrence of words.
|
int |
vecSize
Set size of word vectors
|
int |
windowSize
Set max skip length between words
|
Word2VecWordModel |
wordModel
Use the Skip-Gram model
|
categoricalEncoding, checkpoint, customMetricFunc, distribution, exportCheckpointsDir, foldAssignment, foldColumn, huberAlpha, ignoreConstCols, ignoredColumns, keepCrossValidationFoldAssignment, keepCrossValidationModels, keepCrossValidationPredictions, maxCategoricalLevels, maxRuntimeSecs, modelId, nfolds, offsetColumn, parallelizeCrossValidation, quantileAlpha, responseColumn, scoreEachIteration, stoppingMetric, stoppingRounds, stoppingTolerance, trainingFrame, tweediePower, validationFrame, weightsColumn| Constructor and Description |
|---|
Word2VecParametersV3()
Public constructor
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString()
Return the contents of this object as a JSON String.
|
@SerializedName(value="vec_size") public int vecSize
@SerializedName(value="window_size") public int windowSize
@SerializedName(value="sent_sample_rate") public float sentSampleRate
@SerializedName(value="norm_model") public Word2VecNormModel normModel
public int epochs
@SerializedName(value="min_word_freq") public int minWordFreq
@SerializedName(value="init_learning_rate") public float initLearningRate
@SerializedName(value="word_model") public Word2VecWordModel wordModel
@SerializedName(value="pre_trained") public FrameKeyV3 preTrained
public java.lang.String toString()
toString in class ModelParametersSchemaV3