public class Word2VecParametersV3 extends ModelParametersSchema
| Modifier and Type | Field and Description |
|---|---|
int |
epochs
Number of training iterations to run
|
boolean |
ignore_const_cols
Ignore constant columns
|
java.lang.String[] |
ignored_columns
Ignored columns
|
float |
initLearningRate
Set the starting learning rate
|
int |
minWordFreq
This will discard words that appear less than
|
java.lang.String |
model_id
Destination id for this model; auto-generated if not specified
|
int |
negSampleCnt
Number of negative examples, common values are 3 - 10 (0 = not used)
|
NormModel |
normModel
Use Hierarchical Softmax or Negative Sampling
|
boolean |
score_each_iteration
Whether to score during each iteration of model training
|
float |
sentSampleRate
Set threshold for occurrence of words.
|
java.lang.String |
training_frame
Training frame
|
java.lang.String |
validation_frame
Validation frame
|
int |
vecSize
Set size of word vectors
|
int |
windowSize
Set max skip length between words
|
WordModel |
wordModel
Use the continuous bag of words model or the Skip-Gram model
|
| Constructor and Description |
|---|
Word2VecParametersV3() |
public int vecSize
public int windowSize
public float sentSampleRate
public NormModel normModel
public int negSampleCnt
public int epochs
public int minWordFreq
public float initLearningRate
public WordModel wordModel
public java.lang.String model_id
public java.lang.String training_frame
public java.lang.String validation_frame
public java.lang.String[] ignored_columns
public boolean ignore_const_cols
public boolean score_each_iteration