Click or drag to resize

SessionRun Method

https://www.emgu.com/wiki/index.php/Emgu_TF
Run the graph associated with the session starting with the supplied inputs (inputs[0,ninputs-1] with corresponding values in input_values[0,ninputs-1]).

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Tensor[] Run(
	Output[] inputs,
	Tensor[] inputValues,
	Output[] outputs,
	Operation[] targetOperations = null,
	Buffer runOptions = null,
	Buffer runMetadata = null,
	Status status = null
)

Parameters

inputs
Type: Emgu.TFOutput
The input nodes
inputValues
Type: Emgu.TFTensor
The input values
outputs
Type: Emgu.TFOutput
The output nodes
targetOperations (Optional)
Type: Emgu.TFOperation
Optional target operations
runOptions (Optional)
Type: Emgu.TFBuffer

[Missing <param name="runOptions"/> documentation for "M:Emgu.TF.Session.Run(Emgu.TF.Output[],Emgu.TF.Tensor[],Emgu.TF.Output[],Emgu.TF.Operation[],Emgu.TF.Buffer,Emgu.TF.Buffer,Emgu.TF.Status)"]

runMetadata (Optional)
Type: Emgu.TFBuffer
May be NULL, in which case it will be ignored; or non-NULL, in which case it must point to an empty, freshly allocated `TF_Buffer` that may be updated to contain the serialized representation of a `RunMetadata` protocol buffer.
status (Optional)
Type: Emgu.TFStatus
The status

Return Value

Type: Tensor
On success, the tensors corresponding to outputs[0,noutputs-1] are placed in the returned Tensors.
See Also