LearningModelSession.EvaluationProperties Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Set of properties that control model evaluation.
public:
property IPropertySet ^ EvaluationProperties { IPropertySet ^ get(); };
IPropertySet EvaluationProperties();
public IPropertySet EvaluationProperties { get; }
var iPropertySet = learningModelSession.evaluationProperties;
Public ReadOnly Property EvaluationProperties As IPropertySet
Property Value
Set of properties that control model evaluation.
Examples
The following example demonstrates how to enable trace log output:
#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);
}
Remarks
Windows Server
To use this API on Windows Server, you must use Windows Server 2019 with Desktop Experience.
Thread safety
This API is thread-safe.