MapVariableDescriptorPreview クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
非推奨になりました。 マップ変数記述子情報を表します。
public ref class MapVariableDescriptorPreview sealed
/// [Windows.Foundation.Metadata.ContractVersion(Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract, 65536)]
class MapVariableDescriptorPreview final
/// [Windows.Foundation.Metadata.ContractVersion(Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract, 65536)]
/// [Windows.Foundation.Metadata.Deprecated("Use MapFeatureDescriptor instead of MapVariableDescriptorPreview. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 131072, "Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract")]
class MapVariableDescriptorPreview final
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract), 65536)]
public sealed class MapVariableDescriptorPreview
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract), 65536)]
[Windows.Foundation.Metadata.Deprecated("Use MapFeatureDescriptor instead of MapVariableDescriptorPreview. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 131072, "Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract")]
public sealed class MapVariableDescriptorPreview
Public NotInheritable Class MapVariableDescriptorPreview
- 継承
- 属性
- 実装
Windows の要件
デバイス ファミリ |
Windows 10, version 1803 (10.0.17134.0 で導入)
|
API contract |
Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract (v1.0 で導入)
|
例
public void Evaluator(LearningModelPreview model)
{
// Retrieve the first input feature which is a map
ILearningModelVariableDescriptorPreview inputMapFeatureDescription = model.Description.InputFeatures.First(feature=>feature.ModelFeatureKind == LearningModelFeatureKindPreview.Map);
MapVariableDescriptorPreview MapDescriptor = (MapVariableDescriptorPreview)inputMapFeatureDescription;
// Ensure the input feature is of type map
if (MapDescriptor.ModelFeatureKind != LearningModelFeatureKindPreview.Map)
{
Console.WriteLine($"Input Feature Name: {imageDescriptor.Name}. Not a map feature type.");
}
}
注釈
警告
これは非推奨の API です。 代わりに、 Windows.AI.MachineLearning 名前空間を 使用してください。
プロパティ
Description |
非推奨になりました。 説明マップ変数を取得します。 |
Fields |
非推奨になりました。 マップ変数のフィールドのデータ型を取得します。 |
IsRequired |
非推奨になりました。 true の場合、 LearningModelSession を評価する前に、この機能に値をバインドする必要があります。 |
KeyKind |
非推奨になりました。 マップ変数のキーのデータ型を取得します。 |
ModelFeatureKind |
非推奨になりました。 変数のデータ型を取得します。 |
Name |
非推奨になりました。 マップ変数の名前を取得します。 |
ValidIntegerKeys |
非推奨になりました。 マップ変数記述子の有効な整数キーを取得します。 |
ValidStringKeys |
非推奨になりました。 マップ変数記述子の有効な文字列キーを取得します。 |