Method Execute
Execute(IDictionary<string, Tensor>)
Sets multiple tensors as the inputs of the model and schedules execution of the model. This is non-blocking.
Declaration
public virtual IWorker Execute(IDictionary<string, Tensor> inputs)
Parameters
| Type | Name | Description |
|---|---|---|
| IDictionary<string, Tensor> | inputs |
Returns
| Type | Description |
|---|---|
| IWorker | The |
Implements
Execute(Tensor)
Sets a tensor as the default input of the model and schedules the execution of the model on the worker. This is non-blocking. For models with more than one input this sets the first input.
Declaration
public virtual IWorker Execute(Tensor input)
Parameters
| Type | Name | Description |
|---|---|---|
| Tensor | input |
Returns
| Type | Description |
|---|---|
| IWorker | The |
Implements
Execute()
Schedules the execution of the model on the worker. This is non-blocking.
Declaration
public virtual IWorker Execute()
Returns
| Type | Description |
|---|---|
| IWorker | The |