Freigeben über


LearningModelDescriptionPreview Klasse

Definition

Veraltet. Stellt die Metadaten und Eigenschaftenbeschreibungen für das bereitgestellte Modell dar.

public ref class LearningModelDescriptionPreview sealed
/// [Windows.Foundation.Metadata.ContractVersion(Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract, 65536)]
class LearningModelDescriptionPreview final
/// [Windows.Foundation.Metadata.ContractVersion(Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract, 65536)]
/// [Windows.Foundation.Metadata.Deprecated("Use LearningModel instead of LearningModelDescriptionPreview. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 131072, "Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract")]
class LearningModelDescriptionPreview final
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract), 65536)]
public sealed class LearningModelDescriptionPreview
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract), 65536)]
[Windows.Foundation.Metadata.Deprecated("Use LearningModel instead of LearningModelDescriptionPreview. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 131072, "Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract")]
public sealed class LearningModelDescriptionPreview
Public NotInheritable Class LearningModelDescriptionPreview
Vererbung
Object Platform::Object IInspectable LearningModelDescriptionPreview
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 void Evaluator()
{
    var modelFile = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync("model.onnx");
    LearningModelPreview model = await LearningModelPreview.LoadModelFromStorageFileAsync(modelFile);

    // Our evaluator only handles version 1 of the model
    if (model.Description.Version != 1)
    {
        throw new Exception("Invalid model version");
    }
}

Hinweise

Warnung

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

Eigenschaften

Author

Veraltet. Ruft die Autoreninformationen aus dem Modell ab.

Description

Veraltet. Ruft die benutzerdefinierte Beschreibung des Modells ab.

Domain

Veraltet. Ruft die Domäneninformationen für das Modell ab.

InputFeatures

Veraltet. Ruft die Eingabebeschreibungen für das Modell ab.

Metadata

Veraltet. Ruft die Metadaten aus dem Modell ab.

Name

Veraltet. Ruft den Namen des Modells ab.

OutputFeatures

Veraltet. Ruft die Ausgabebeschreibungen des Modells ab.

Version

Veraltet. Ruft die Versionsinformationen des Modells ab.

Gilt für: