LearningModelSessionOptions クラス

定義

LearningModelSession オブジェクトの作成時に使用される推論オプションについて説明します。

public ref class LearningModelSessionOptions sealed
/// [Windows.Foundation.Metadata.Activatable(131072, "Windows.AI.MachineLearning.MachineLearningContract")]
/// [Windows.Foundation.Metadata.ContractVersion(Windows.AI.MachineLearning.MachineLearningContract, 131072)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
class LearningModelSessionOptions final
[Windows.Foundation.Metadata.Activatable(131072, "Windows.AI.MachineLearning.MachineLearningContract")]
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.AI.MachineLearning.MachineLearningContract), 131072)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
public sealed class LearningModelSessionOptions
function LearningModelSessionOptions()
Public NotInheritable Class LearningModelSessionOptions
継承
Object Platform::Object IInspectable LearningModelSessionOptions
属性

Windows の要件

デバイス ファミリ
Windows 10, version 1903 (10.0.18362.0 で導入)
API contract
Windows.AI.MachineLearning.MachineLearningContract (v2.0 で導入)

次の例では、セッションの作成時に使用する LearningModelSessionOptions オブジェクトを作成します。

private LearningModelSessionOptions CreateSessionOptions()
{
    var options = new LearningModelSessionOptions();

    // Disable constant batch size optimizations
    options.BatchSizeOverride = 0;

    return options;
}

注釈

LearningModelSessionOptions オブジェクトを使用して、LearningModelSession の構築を構成できます。

バージョン履歴

Windows のバージョン SDK バージョン 追加された値
2004 19041 CloseModelOnSessionCreation

コンストラクター

LearningModelSessionOptions()

LearningModelSession の作成を構成するオプションを作成します。

プロパティ

BatchSizeOverride

ターゲット モデルの定数バッチ サイズオーバーライド値を指定する数値。

CloseModelOnSessionCreation

LearningModelSession が作成時に関連付けられている学習モデルを閉じるかどうかを指定します。

メソッド

OverrideNamedDimension(String, UInt32)

学習モデルの名前付き入力ディメンションを具体的な値にオーバーライドする機能を提供します。

適用対象