Compartir a través de


LearningModelDescriptionPreview.Description Propiedad

Definición

En desuso. Obtiene la descripción personalizada del modelo.

public:
 property Platform::String ^ Description { Platform::String ^ get(); };
winrt::hstring Description();
/// [get: Windows.Foundation.Metadata.Deprecated("Use ILearningModel instead of ILearningModelDescriptionPreview. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 131072, "Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract")]
winrt::hstring Description();
public string Description { get; }
public string Description { [Windows.Foundation.Metadata.Deprecated("Use ILearningModel instead of ILearningModelDescriptionPreview. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 131072, "Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract")] get; }
var string = learningModelDescriptionPreview.description;
Public ReadOnly Property Description As String

Valor de propiedad

String

Platform::String

winrt::hstring

Descripción personalizada del modelo.

Atributos

Ejemplos

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

	Console.WriteLine($"Model Description: {model.Description.Description}.");
}

Comentarios

Advertencia

Se trata de una API en desuso. Use el espacio de nombres Windows.AI.MachineLearning en su lugar.

Se aplica a