Skip to content

NatML 1.0.9

Compare
Choose a tag to compare
@olokobayusuf olokobayusuf released this 10 Mar 21:49
· 1 commit to main since this release
  • Added exclusive support for running CoreML graphs on iOS and macOS.
  • Added exclusive support for running TensorFlow Lite graphs on Android.
  • Added support for working with CoreML .mlmodel files in Unity projects.
  • Added support for working with TensorFlow Lite .tflite files in Unity projects.
  • Added support for Apple Silicon on macOS.
  • Added MLVideoFeature class for making ML predictions on video files.
  • Added MLVideoType feature type for inspecting video features.
  • Added MLDepthFeature abstract class for working with predictors that use depth data.
  • Added support for audio feature resampling in MLAudioFeature with sampleRate and channelCount fields.
  • Added MLEdgeFeature type for added type safety when authoring edge predictors.
  • Added MLImageFeature constructor which accepts a NativeArray<byte> pixel buffer.
  • Added MLImageFeature.width convenience property for getting width of image feature.
  • Added MLImageFeature.height convenience property for getting height of image feature.
  • Added MLImageFeature.CopyTo methods for copying pixel data from image feature.
  • Added MLAudioFeature constructor that accepts a NativeArray<float> to minimize memory copies.
  • Added MLAudioFeature path constructor for reading audio features from audio and video files.
  • Added MLAudioFeature.CopyTo methods for copying audio data from audio feature.
  • Added MLAudioFeature.FromStreamingAssets method for creating an audio feature from an audio file in the StreamingAssets folder.
  • Added MLAudioFeature.ToAudioClip method for converting audio feature to an AudioClip.
  • Added MLAudioFeature.ReadToEnd method to read audio data into memory for audio features backed by an audio file.
  • Added MLAudioType.FromFile method for inspecting the audio type of a video or audio file.
  • Added MLAudioType.FromAudioClip method for inspecting the audio type of an audio clip.
  • Added MLAudioType.FromVideoClip method for inspecting the audio type of a video clip.
  • Added MLAudioType.FromStreamingAssets method for inspecting the audio type of a video file in the StreamingAssets folder.
  • Added MLImageType constructor that accepts image channels.
  • Fixed MLImageFeature type incorrectly reporting 3 channels instead of 4.
  • Fixed MLImageFeature default normalization standard deviation having 0 for alpha channel.
  • Removed IMLModel interface as it has long been deprecated.
  • Removed IMLFeature interface as it has long been deprecated.