Freigeben über


InferencingOptionsPreview Klasse

Definition

Veraltet. Stellt die Rückschlussoptionen zum Steuern der Auswertung eines Modells dar.

public ref class InferencingOptionsPreview sealed
/// [Windows.Foundation.Metadata.ContractVersion(Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract, 65536)]
class InferencingOptionsPreview final
/// [Windows.Foundation.Metadata.ContractVersion(Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract, 65536)]
/// [Windows.Foundation.Metadata.Deprecated("Use LearningModelSession instead of InferencingOptionsPreview. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 131072, "Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract")]
class InferencingOptionsPreview final
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract), 65536)]
public sealed class InferencingOptionsPreview
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract), 65536)]
[Windows.Foundation.Metadata.Deprecated("Use LearningModelSession instead of InferencingOptionsPreview. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 131072, "Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract")]
public sealed class InferencingOptionsPreview
Public NotInheritable Class InferencingOptionsPreview
Vererbung
Object Platform::Object IInspectable InferencingOptionsPreview
Attribute

Windows-Anforderungen

Gerätefamilie
Windows 10, version 1803 (eingeführt in 10.0.17134.0)
API contract
Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract (eingeführt in v1.0)

Beispiele

void SetEvaluationOptionsForModel(LearningModelPreview model)
{
    // Set our preference to use the GPU
    InferencingOptionsPreview options = model.InferencingOptions;
    options.PreferredDeviceKind = LearningModelDeviceKindPreview.LearningDeviceGpu;

    model.InferencingOptions = options;
}

Hinweise

Warnung

Dies ist eine veraltete API. Verwenden Sie stattdessen den Windows.AI.MachineLearning-Namespace .

Eigenschaften

IsTracingEnabled

Veraltet. Ruft ab oder legt fest, ob die Ablaufverfolgung während der Modellauswertung aktiviert ist.

MaxBatchSize

Veraltet. Ruft die maximale Batchgröße für die Modellauswertung ab oder legt diese fest.

MinimizeMemoryAllocation

Veraltet. Ruft ab oder legt fest, ob die Speicherbelegung nach der Modellauswertung minimiert werden soll.

PreferredDeviceKind

Veraltet. Ruft das bevorzugte Gerät ab, auf dem die Auswertung ausgeführt wird, oder legt es fest.

ReclaimMemoryAfterEvaluation

Veraltet. Ruft ab oder legt fest, ob zugewiesener Arbeitsspeicher nach der Modellauswertung wieder abgerufen werden soll.

Gilt für: