SkillFeatureTensorDescriptor(String, String, Boolean, IVectorView<Int64>, SkillElementKind) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.