Freigeben über


LearningModelPreview Klasse

Definition

Veraltet. Stellt ein Machine Learning-Modell dar.

public ref class LearningModelPreview sealed
/// [Windows.Foundation.Metadata.ContractVersion(Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract, 65536)]
class LearningModelPreview final
/// [Windows.Foundation.Metadata.ContractVersion(Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract, 65536)]
/// [Windows.Foundation.Metadata.Deprecated("Use LearningModel instead of LearningModelPreview. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 131072, "Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract")]
class LearningModelPreview final
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract), 65536)]
public sealed class LearningModelPreview
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract), 65536)]
[Windows.Foundation.Metadata.Deprecated("Use LearningModel instead of LearningModelPreview. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 131072, "Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract")]
public sealed class LearningModelPreview
Public NotInheritable Class LearningModelPreview
Vererbung
Object Platform::Object IInspectable LearningModelPreview
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

public async Task LoadModel()
{
    var modelFile = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync("model.onnx");
    LearningModelPreview model = await LearningModelPreview.LoadModelFromStorageFileAsync(modelFile);

	...
}

Hinweise

Warnung

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

Eigenschaften

Description

Veraltet. Ruft die beschreibenden Metadaten für das trainierte Machine Learning-Modell ab.

InferencingOptions

Veraltet. Ruft die Rückschlussoptionen für die Auswertung eines Modells ab oder legt diese fest.

Methoden

EvaluateAsync(LearningModelBindingPreview, String)

Veraltet. Asynchrones Auswerten des Machine Learning-Modells mithilfe des bereits gebundenen Featurewerts.

EvaluateFeaturesAsync(IMap<String,Object>, String)

Veraltet. Wertet Namen von Variableninstanzen asynchron als Eingaben und Ausgaben für das Modell aus.

LoadModelFromStorageFileAsync(IStorageFile)

Veraltet. Lädt ein Modell asynchron aus dem Dateispeicher.

LoadModelFromStreamAsync(IRandomAccessStreamReference)

Veraltet. Lädt ein Modell asynchron aus einem bereitgestellten Stream.

Gilt für: