LearningModelBindingPreview.Bind Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
Bind(String, Object) |
Veraltet. Bindet ein einzelnes Eingabe- oder Ausgabefeature an eine definierte Variable. |
Bind(String, Object, IPropertySet) |
Veraltet. Bindet ein einzelnes Eingabe- oder Ausgabefeature mit angegebenen Metadaten an eine definierte Variable. |
Bind(String, Object)
Veraltet. Bindet ein einzelnes Eingabe- oder Ausgabefeature an eine definierte Variable.
public:
virtual void Bind(Platform::String ^ name, Platform::Object ^ value) = Bind;
/// [Windows.Foundation.Metadata.Overload("Bind")]
void Bind(winrt::hstring const& name, IInspectable const& value);
/// [Windows.Foundation.Metadata.Overload("Bind")]
/// [Windows.Foundation.Metadata.Deprecated("Use ILearningModelBinding instead of ILearningModelBindingPreview. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 131072, "Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract")]
void Bind(winrt::hstring const& name, IInspectable const& value);
[Windows.Foundation.Metadata.Overload("Bind")]
public void Bind(string name, object value);
[Windows.Foundation.Metadata.Overload("Bind")]
[Windows.Foundation.Metadata.Deprecated("Use ILearningModelBinding instead of ILearningModelBindingPreview. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 131072, "Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract")]
public void Bind(string name, object value);
function bind(name, value)
Public Sub Bind (name As String, value As Object)
Parameter
- name
-
String
Platform::String
winrt::hstring
Der Name des Eingabe-/Ausgabefeatures.
- value
-
Object
Platform::Object
IInspectable
Der Wert des Eingabe-/Ausgabefeatures.
- Attribute
Beispiele
public void PrepareBinding(LearningModelPreview model, VideoFrame picture)
{
ImageVariableDescriptorPreview inputImageDescription;
List<ILearningModelVariableDescriptorPreview> inputFeatures = model.Description.InputFeatures.ToList();
inputImageDescription =
inputFeatures.FirstOrDefault(feature => feature.ModelFeatureKind == LearningModelFeatureKindPreview.Image)
as ImageVariableDescriptorPreview;
// Bind the image
var binding = new LearningModelBindingPreview(model);
binding.Bind(inputImageDescription, picture);
}
Hinweise
Hinweis: Derzeit werden Ausgaben des Typs double
nicht unterstützt. Wenn möglich, sollten Sie stattdessen den Typ float
verwenden.
Warnung
Dies ist eine veraltete API. Verwenden Sie stattdessen den Windows.AI.MachineLearning-Namespace .
Gilt für:
Bind(String, Object, IPropertySet)
Veraltet. Bindet ein einzelnes Eingabe- oder Ausgabefeature mit angegebenen Metadaten an eine definierte Variable.
public:
virtual void Bind(Platform::String ^ name, Platform::Object ^ value, IPropertySet ^ metadata) = Bind;
/// [Windows.Foundation.Metadata.Overload("BindWithProperties")]
void Bind(winrt::hstring const& name, IInspectable const& value, IPropertySet const& metadata);
/// [Windows.Foundation.Metadata.Overload("BindWithProperties")]
/// [Windows.Foundation.Metadata.Deprecated("Use ILearningModelBinding instead of ILearningModelBindingPreview. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 131072, "Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract")]
void Bind(winrt::hstring const& name, IInspectable const& value, IPropertySet const& metadata);
[Windows.Foundation.Metadata.Overload("BindWithProperties")]
public void Bind(string name, object value, IPropertySet metadata);
[Windows.Foundation.Metadata.Overload("BindWithProperties")]
[Windows.Foundation.Metadata.Deprecated("Use ILearningModelBinding instead of ILearningModelBindingPreview. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 131072, "Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract")]
public void Bind(string name, object value, IPropertySet metadata);
function bind(name, value, metadata)
Public Sub Bind (name As String, value As Object, metadata As IPropertySet)
Parameter
- name
-
String
Platform::String
winrt::hstring
Der Name des Eingabe-/Ausgabefeatures.
- value
-
Object
Platform::Object
IInspectable
Der Wert des Eingabe-/Ausgabefeatures.
- metadata
- IPropertySet
Die angegebenen Metadaten für das Eingabe-/Ausgabefeature.
- Attribute
Hinweise
Hinweis: Derzeit werden Ausgaben des Typs double
nicht unterstützt. Wenn möglich, sollten Sie stattdessen den Typ float
verwenden.
Warnung
Dies ist eine veraltete API. Verwenden Sie stattdessen den Windows.AI.MachineLearning-Namespace .