Class InferenceRequestMetadata
Represents the metadata associated with an inference request.
Namespace: Monai.Deploy.InformaticsGateway.Api.Rest
Assembly: Monai.Deploy.InformaticsGateway.Api.dll
Syntax
public class InferenceRequestMetadata
Remarks
details>
is required.
Examples
{
...
"inputMetadata" : {
"details" : { ... },
"inputs": [ ... ]
}
...
}
Properties
| Improve this Doc View SourceDetails
Gets or sets the details of an inference request.
Declaration
[JsonPropertyName("details")]
public InferenceRequestDetails Details { get; set; }
Property Value
Type | Description |
---|---|
InferenceRequestDetails |
Inputs
Gets or sets an array of inference request details. Note: this is an extension to the ACR specs to enable multiple input data types.
Declaration
[JsonPropertyName("inputs")]
public IList<InferenceRequestDetails> Inputs { get; set; }
Property Value
Type | Description |
---|---|
IList<InferenceRequestDetails> |