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 はスレッド セーフです。