Поделиться через


LearningModel.Author Свойство

Определение

Имя автора модели.

public:
 property Platform::String ^ Author { Platform::String ^ get(); };
winrt::hstring Author();
public string Author { get; }
var string = learningModel.author;
Public ReadOnly Property Author As String

Значение свойства

String

Platform::String

winrt::hstring

Имя автора модели.

Примеры

В следующем примере модель загружается из локального файла, выводится автор модели в пользовательский интерфейс приложения и создается сеанс из модели.

private async Task LoadModelAsync(string _modelFileName)
{
    LearningModel _model;
    LearningModelSession _session;

    try
    {
        // Load and create the model
        var modelFile = 
            await StorageFile.GetFileFromApplicationUriAsync(new Uri($"ms-appx:///Assets/{_modelFileName}"));
        _model = await LearningModel.LoadFromStorageFileAsync(modelFile);

        //Output the model author to application UI
        StatusBlock.Text = $"Model Author: {_model.Author}";

        // Create the evaluation session with the model
        _session = new LearningModelSession(_model);

    }
    catch (Exception ex)
    {
        StatusBlock.Text = $"error: {ex.Message}";
        _model = null;
    }
}

Комментарии

Windows Server

Чтобы использовать этот API в Windows Server, необходимо использовать Windows Server 2019 с возможностями рабочего стола.

Потокобезопасность

Этот API является потокобезопасным.

Применяется к