This repository has been archived by the owner on Aug 30, 2024. It is now read-only.
NatML 1.0.10
- Improved prediction performance on Windows systems with dedicated GPU's.
- Added
MLArrayFeature
constructors that acceptNativeArray<T>
native arrays to minimize memory copies. - Added setter accessors to
MLArrayFeature
indexers allowing for writing values to feature data. - Added
MLAudioFeature.Contiguous
method for decoding encoded audio feature into memory. - Added support for creating greyscale image
MLEdgeFeature
features fromMLImageFeature
features. - Added
MLImageFeature.RegionOfInterest
method for extracting an ROI from an image. - Added
MLImageFeature.Contiguous
method for decoding encoded image feature into memory. - Added
MLDepthFeature.width
convenience property for getting width of depth features. - Added
MLDepthFeature.height
convenience property for getting height of depth features. - Added
MLImageType.interleaved
property for checking whether image feature is interleaved or planar. - Added
IMLCloudFeature
interface to create cloud ML features for making cloud predictions. - Added "Clear Predictor Cache" menu item for clearing predictor cache in the editor.
- Added
NatMLHub.Subscribe
method for making subscription requests to the NatML API. - Fixed memory leak when using certain vision predictors like Robust Video Matting.
- Refactored
MLHubModel
class toMLCloudModel
. - Refactored
MLHubFeature
class toMLCloudFeature
. - Refactored
HubDataType
class toDataType
. - Deprecated
IMLHubFeature
interface. - Removed
MLAudioFeature.ReadToEnd
method. UseMLAudioFeature.Contiguous
method instead.