LearningModelSession.EvaluationProperties 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
모델 평가를 제어하는 속성 집합입니다.
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는 스레드로부터 안전합니다.