LearningModelSession.EvaluationProperties 属性

定义

控制模型计算的属性集。

public:
 property IPropertySet ^ EvaluationProperties { IPropertySet ^ get(); };
IPropertySet EvaluationProperties();
public IPropertySet EvaluationProperties { get; }
var iPropertySet = learningModelSession.evaluationProperties;
Public ReadOnly Property EvaluationProperties As IPropertySet

属性值

控制模型计算的属性集。

示例

以下示例演示如何启用跟踪日志输出:

#include <winrt/Windows.AI.MachineLearning.h>
using namespace winrt;
using namespace Windows::AI::MachineLearning;

...

void EnableDebugOutput(LearningModelSession _session)
{
    // Enables trace log output.
    _session.EvaluationProperties().Insert(L"EnableDebugOutput", nullptr);
}

注解

Windows Server

若要在 Windows Server 上使用此 API,必须使用带桌面体验的 Windows Server 2019。

线程安全

此 API 是线程安全的。

适用于