Partager via


InferencingOptionsPreview Classe

Définition

Action déconseillée. Représente les options d’inférence pour contrôler l’évaluation d’un modèle.

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
Héritage
Object Platform::Object IInspectable InferencingOptionsPreview
Attributs

Configuration requise pour Windows

Famille d’appareils
Windows 10, version 1803 (introduit dans 10.0.17134.0)
API contract
Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract (introduit dans v1.0)

Exemples

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

    model.InferencingOptions = options;
}

Remarques

Avertissement

Il s’agit d’une API déconseillée. Utilisez plutôt l’espace de noms Windows.AI.MachineLearning .

Propriétés

IsTracingEnabled

Action déconseillée. Obtient ou définit si le suivi est activé pendant l’évaluation du modèle.

MaxBatchSize

Action déconseillée. Obtient ou définit la taille de lot maximale pour l’évaluation du modèle.

MinimizeMemoryAllocation

Action déconseillée. Obtient ou définit s’il faut réduire l’allocation de mémoire après l’évaluation du modèle.

PreferredDeviceKind

Action déconseillée. Obtient ou définit l’appareil préféré sur lequel l’évaluation sera effectuée.

ReclaimMemoryAfterEvaluation

Action déconseillée. Obtient ou définit s’il faut récupérer la mémoire allouée après l’évaluation du modèle.

S’applique à