Platforms to show: All Mac Windows Linux Cross-Platform

Back to WinLearningModelBindingMBS class.

WinLearningModelBindingMBS.BindWithDouble(name as string, shape() as Integer, values() as Double = nil)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method WindowsML MBS WinFrameworks Plugin 20.5 ❌ No ✅ Yes ❌ No ❌ No Desktop only
Binds a input feature with a given tensor array.

This is for 64-bit floating point values.
Shape defines the array dimensions as given in Shape property in WinLearningModelTensorFeatureDescriptorMBS class.
If values is empty, we bind without passing values.

WinLearningModelBindingMBS.BindWithFloat(name as string, shape() as Integer, values() as Single = nil)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method WindowsML MBS WinFrameworks Plugin 20.5 ❌ No ✅ Yes ❌ No ❌ No Desktop only
Binds a input feature with a given tensor array.

This is for 32-bit floating point values.
Shape defines the array dimensions as given in Shape property in WinLearningModelTensorFeatureDescriptorMBS class.
If values is empty, we bind without passing values.

Some examples using this method:

WinLearningModelBindingMBS.BindWithFloat16(name as string, shape() as Integer, values() as Single = nil)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method WindowsML MBS WinFrameworks Plugin 20.5 ❌ No ✅ Yes ❌ No ❌ No Desktop only
Binds a input feature with a given tensor array.

This is for 16-bit floating point values.
Shape defines the array dimensions as given in Shape property in WinLearningModelTensorFeatureDescriptorMBS class.
If values is empty, we bind without passing values.

WinLearningModelBindingMBS.BindWithImage(name as string, file as folderItem)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method WindowsML MBS WinFrameworks Plugin 20.5 ❌ No ✅ Yes ❌ No ❌ No Desktop only
Binds a input feature with a given image file.

Maybe used with features needing image or tensor data.

See also:

Some examples using this method:

WinLearningModelBindingMBS.BindWithImage(name as string, Path as String)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method WindowsML MBS WinFrameworks Plugin 20.5 ❌ No ✅ Yes ❌ No ❌ No Desktop only
Binds a input feature with a given image file.

Maybe used with features needing image or tensor data.

See also:

WinLearningModelBindingMBS.BindWithInt16(name as string, shape() as Integer, values() as Int16 = nil)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method WindowsML MBS WinFrameworks Plugin 20.5 ❌ No ✅ Yes ❌ No ❌ No Desktop only
Binds a input feature with a given tensor array.

This is for 16-bit signed integer values.
Shape defines the array dimensions as given in Shape property in WinLearningModelTensorFeatureDescriptorMBS class.
If values is empty, we bind without passing values.

WinLearningModelBindingMBS.BindWithInt32(name as string, shape() as Integer, values() as Int32 = nil)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method WindowsML MBS WinFrameworks Plugin 20.5 ❌ No ✅ Yes ❌ No ❌ No Desktop only
Binds a input feature with a given tensor array.

This is for 32-bit signed integer values.
Shape defines the array dimensions as given in Shape property in WinLearningModelTensorFeatureDescriptorMBS class.
If values is empty, we bind without passing values.

WinLearningModelBindingMBS.BindWithInt64(name as string, shape() as Integer, values() as Int64 = nil)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method WindowsML MBS WinFrameworks Plugin 20.5 ❌ No ✅ Yes ❌ No ❌ No Desktop only
Binds a input feature with a given tensor array.

This is for 64-bit signed integer values.
Shape defines the array dimensions as given in Shape property in WinLearningModelTensorFeatureDescriptorMBS class.
If values is empty, we bind without passing values.

WinLearningModelBindingMBS.BindWithInt8(name as string, shape() as Integer, values() as Int8 = nil)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method WindowsML MBS WinFrameworks Plugin 20.5 ❌ No ✅ Yes ❌ No ❌ No Desktop only
Binds a input feature with a given tensor array.

This is for 8-bit signed integer values.
Shape defines the array dimensions as given in Shape property in WinLearningModelTensorFeatureDescriptorMBS class.
If values is empty, we bind without passing values.

WinLearningModelBindingMBS.BindWithUInt16(name as string, shape() as Integer, values() as UInt16 = nil)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method WindowsML MBS WinFrameworks Plugin 20.5 ❌ No ✅ Yes ❌ No ❌ No Desktop only
Binds a input feature with a given tensor array.

This is for 16-bit unsigned integer values.
Shape defines the array dimensions as given in Shape property in WinLearningModelTensorFeatureDescriptorMBS class.
If values is empty, we bind without passing values.

WinLearningModelBindingMBS.BindWithUInt32(name as string, shape() as Integer, values() as UInt32 = nil)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method WindowsML MBS WinFrameworks Plugin 20.5 ❌ No ✅ Yes ❌ No ❌ No Desktop only
Binds a input feature with a given tensor array.

This is for 32-bit unsigned integer values.
Shape defines the array dimensions as given in Shape property in WinLearningModelTensorFeatureDescriptorMBS class.
If values is empty, we bind without passing values.

WinLearningModelBindingMBS.BindWithUInt64(name as string, shape() as Integer, values() as UInt64 = nil)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method WindowsML MBS WinFrameworks Plugin 20.5 ❌ No ✅ Yes ❌ No ❌ No Desktop only
Binds a input feature with a given tensor array.

This is for 64-bit unsigned integer values.
Shape defines the array dimensions as given in Shape property in WinLearningModelTensorFeatureDescriptorMBS class.
If values is empty, we bind without passing values.

WinLearningModelBindingMBS.BindWithUInt8(name as string, shape() as Integer, values() as UInt8 = nil)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method WindowsML MBS WinFrameworks Plugin 20.5 ❌ No ✅ Yes ❌ No ❌ No Desktop only
Binds a input feature with a given tensor array.

This is for 8-bit unsigned integer values.
Shape defines the array dimensions as given in Shape property in WinLearningModelTensorFeatureDescriptorMBS class.
If values is empty, we bind without passing values.

WinLearningModelBindingMBS.Clear

Type Topic Plugin Version macOS Windows Linux iOS Targets
method WindowsML MBS WinFrameworks Plugin 20.5 ❌ No ✅ Yes ❌ No ❌ No Desktop only
Remove all bindings.

WinLearningModelBindingMBS.Constructor(Session as WinLearningModelSessionMBS)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method WindowsML MBS WinFrameworks Plugin 20.5 ❌ No ✅ Yes ❌ No ❌ No Desktop only
Creates a WinLearningModelBindingMBS from the specified WinLearningModelSessionMBS.

WinLearningModelBindingMBS.HasKey(key as string) as Boolean

Type Topic Plugin Version macOS Windows Linux iOS Targets
method WindowsML MBS WinFrameworks Plugin 20.5 ❌ No ✅ Yes ❌ No ❌ No Desktop only
Determines whether the map view contains the specified key.

Returns true if the map view contains the specified key; otherwise, false.

WinLearningModelBindingMBS.SetDefaults

Type Topic Plugin Version macOS Windows Linux iOS Targets
method WindowsML MBS WinFrameworks Plugin 20.5 ❌ No ✅ Yes ❌ No ❌ No Desktop only
Fills all tensor arrays with empty arrays.

The items on this page are in the following plugins: MBS WinFrameworks Plugin.


The biggest plugin in space...