Click or drag to resize

GraphStringNGrams Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation StringNGrams(
	Output data,
	Output data_splits,
	string separator,
	long[] ngram_widths,
	string left_pad,
	string right_pad,
	long pad_width,
	bool preserve_short_sequences,
	string opName = "StringNGrams"
)

Parameters

data
Type: Emgu.TFOutput
Input to the operation.
data_splits
Type: Emgu.TFOutput
Input to the operation.
separator
Type: SystemString
separator
ngram_widths
Type: SystemInt64
ngram widths
left_pad
Type: SystemString
left pad
right_pad
Type: SystemString
right pad
pad_width
Type: SystemInt64
pad width
preserve_short_sequences
Type: SystemBoolean
preserve short sequences
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] ngrams(type: DtString). [1] ngrams_splits(type: DtInvalid).
See Also