Condividi tramite


LearningModelDescriptionPreview.Author Proprietà

Definizione

Deprecato. Ottiene le informazioni sull'autore dal modello.

public:
 property Platform::String ^ Author { Platform::String ^ get(); };
winrt::hstring Author();
/// [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 Author();
public string Author { get; }
public string Author { [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.author;
Public ReadOnly Property Author As String

Valore della proprietà

String

Platform::String

winrt::hstring

Informazioni sull'autore del modello.

Attributi

Esempio

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

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

Commenti

Avviso

Si tratta di un'API deprecata. Usare invece lo spazio dei nomi Windows.AI.MachineLearning .

Si applica a