LearningModelBindingPreview.Bind Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
Bind(String, Object) |
Preterido. Associa um único recurso de entrada ou saída a uma variável definida. |
Bind(String, Object, IPropertySet) |
Preterido. Associa um único recurso de entrada ou saída a uma variável definida, com metadados especificados. |
Bind(String, Object)
Preterido. Associa um único recurso de entrada ou saída a uma variável definida.
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)
Parâmetros
- name
-
String
Platform::String
winrt::hstring
O nome do recurso de entrada/saída.
- value
-
Object
Platform::Object
IInspectable
O valor do recurso de entrada/saída.
- Atributos
Exemplos
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);
}
Comentários
Observação: atualmente, não há suporte para saídas do tipo double
. Se possível, considere usar o tipo float
em vez disso.
Aviso
Essa é uma API preterida. Use o namespace Windows.AI.MachineLearning .
Aplica-se a
Bind(String, Object, IPropertySet)
Preterido. Associa um único recurso de entrada ou saída a uma variável definida, com metadados especificados.
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)
Parâmetros
- name
-
String
Platform::String
winrt::hstring
O nome do recurso de entrada/saída.
- value
-
Object
Platform::Object
IInspectable
O valor do recurso de entrada/saída.
- metadata
- IPropertySet
Os metadados especificados para o recurso de entrada/saída.
- Atributos
Comentários
Observação: atualmente, não há suporte para saídas do tipo double
. Se possível, considere usar o tipo float
em vez disso.
Aviso
Essa é uma API preterida. Use o namespace Windows.AI.MachineLearning .