LearningModel.Author 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
模型作者的名稱。
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
屬性值
模型作者的名稱。
範例
下列範例會從本機檔案載入模型、將模型作者輸出至應用程式的 UI,並從模型建立會話。
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
若要在 Windows Server 上使用此 API,您必須搭配桌面體驗使用 Windows Server 2019。
執行緒安全
此 API 是安全線程。