Platforms to show: All Mac Windows Linux Cross-Platform
MLSequenceMBS class
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
class | CoreML | MBS Mac64bit Plugin | 20.0 | ✅ Yes | ❌ No | ❌ No | ✅ Yes | All |
Data from sensors (a time series) or language (a series of words) are often manipulated as sequences by machine learning models. These sequences can have variable lengths depending on their context. MLSequenceMBS explicitly encodes a sequence of strings or integers to support a series of data points as a single input.
If you need to process a sequence of values individually, one at a time, see Making Predictions with a Sequence of Inputs for details.
https://developer.apple.com/documentation/coreml/core_ml_api/making_predictions_with_a_sequence_of_inputs
Available in MacOS 10.14 or newer.
This is an abstract class. You can't create an instance, but you can get one from various plugin functions.
- 2 properties
- 3 methods
- method Constructor Private
- method int64Values as Int64()
- method stringValues as String()
- 3 shared methods
- shared method emptySequenceWithType(type as Integer) as MLSequenceMBS
- shared method sequenceWithInt64Array(int64Values() as Int64) as MLSequenceMBS
- shared method sequenceWithStringArray(stringValues() as String) as MLSequenceMBS
This class has no sub classes.
Some methods using this class:
- MLFeatureValueMBS.featureValueWithSequence(sequence as MLSequenceMBS) as MLFeatureValueMBS
Some properties using for this class:
- MLFeatureValueMBS.sequenceValue as MLSequenceMBS
Some examples using this class:
Blog Entries
Release notes
- Version 20.0
- Added MLTaskMBS, MLBatchProviderMBS, MLParameterKeyMBS, MLUpdateTaskMBS, MLModelConfigurationMBS, MLArrayBatchProviderMBS, MLUpdateContextMBS, MLMetricKeyMBS, MLMultiArrayShapeConstraintMBS, MLUpdateProgressHandlersMBS, MLParameterDescriptionMBS, MLNumericConstraintMBS, MLKeyMBS, MLImageSizeMBS, MLImageSizeConstraintMBS, MLSequenceConstraintMBS, and MLSequenceMBS classes.
The items on this page are in the following plugins: MBS Mac64bit Plugin.
MLSequenceConstraintMBS - MLTaskMBS