MapVariableDescriptorPreview Kelas
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Dihentikan. Mewakili informasi deskriptor variabel peta.
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
- Warisan
- Atribut
- Penerapan
Persyaratan Windows
Rangkaian perangkat |
Windows 10, version 1803 (diperkenalkan dalam 10.0.17134.0)
|
API contract |
Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract (diperkenalkan dalam v1.0)
|
Contoh
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.");
}
}
Keterangan
Peringatan
Ini adalah API yang tidak digunakan lagi. Silakan gunakan namespace Windows.AI.MachineLearning sebagai gantinya.
Properti
Description |
Dihentikan. Mendapatkan variabel peta deskripsi. |
Fields |
Dihentikan. Mendapatkan jenis data bidang variabel peta. |
IsRequired |
Dihentikan. Jika true, Anda harus mengikat nilai ke fitur ini sebelum mengevaluasi LearningModelSession. |
KeyKind |
Dihentikan. Mendapatkan jenis data kunci untuk variabel peta. |
ModelFeatureKind |
Dihentikan. Mendapatkan jenis data variabel. |
Name |
Dihentikan. Mendapatkan nama variabel peta. |
ValidIntegerKeys |
Dihentikan. Mendapatkan kunci bilangan bulat yang valid untuk deskriptor variabel peta. |
ValidStringKeys |
Dihentikan. Mendapatkan kunci string yang valid dari deskriptor variabel peta. |