SkillFeatureTensorDescriptor(String, String, Boolean, IVectorView<Int64>, SkillElementKind) Constructor

Definition

The SkillFeatureTensorDescriptor constructor.

public:
 SkillFeatureTensorDescriptor(System::String ^ name, System::String ^ description, bool isRequired, Windows::Foundation::Collections::IVectorView<long> ^ shape, Microsoft::AI::Skills::SkillInterfacePreview::SkillElementKind elementKind);
public SkillFeatureTensorDescriptor (string name, string description, bool isRequired, Windows.Foundation.Collections.IVectorView<long> shape, Microsoft.AI.Skills.SkillInterfacePreview.SkillElementKind elementKind);
new Microsoft.AI.Skills.SkillInterfacePreview.SkillFeatureTensorDescriptor : string * string * bool * Windows.Foundation.Collections.IVectorView<int64> * Microsoft.AI.Skills.SkillInterfacePreview.SkillElementKind -> Microsoft.AI.Skills.SkillInterfacePreview.SkillFeatureTensorDescriptor
Public Sub New (name As String, description As String, isRequired As Boolean, shape As IVectorView(Of Long), elementKind As SkillElementKind)

Parameters

name
String

The name of this feature.

description
String

The description of this feature.

isRequired
Boolean

Whether or not this feature is required to be bound in an ISkillBinding to proceed to evaluation with the related ISkill.

shape
Windows.Foundation.Collections.IVectorView<Int64>

The dimensions required for this tensor feature as an IReadOnlyList.

elementKind
SkillElementKind

The SkillElementKind required to be contained in this tensor feature.

Applies to