Click or drag to resize

GraphSkipgram Method

https://www.emgu.com/wiki/index.php/Emgu_TF
Skipgram

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation Skipgram(
	string filename,
	long batch_size,
	long window_size = 5,
	long min_count = 5,
	float subsample = 0.001f,
	string opName = "Skipgram"
)

Parameters

filename
Type: SystemString
filename
batch_size
Type: SystemInt64
batch size
window_size (Optional)
Type: SystemInt64
window size
min_count (Optional)
Type: SystemInt64
min count
subsample (Optional)
Type: SystemSingle
subsample
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] vocab_word(type: DtString). [1] vocab_freq(type: DtInt32). [2] words_per_epoch(type: DtInt64). [3] current_epoch(type: DtInt32). [4] total_words_processed(type: DtInt64). [5] examples(type: DtInt32). [6] labels(type: DtInt32).
See Also