Skip to content
This repository has been archived by the owner on Feb 7, 2023. It is now read-only.

1.0b3 Beta

Pre-release
Pre-release
Compare
Choose a tag to compare
@bhushan23 bhushan23 released this 17 Sep 20:44
· 48 commits to master since this release
f0a9327
  • Added the argument target_ios to choose the Core ML spec version that is produced by the converter. target_ios = '13' will enable the converter to use all the new layers added in Core ML 3.
  • (diff with 1.0b2) use rank inference implemented in neural network builder API of coremltools 3.0b6. This helps in converting more models, which previously produced errors.
  • (diff with 1.0b2) added support for ops GRU, ROIAlign, TopK.

Known Issues

  • Model with Upsample may require using custom_conversion_function, through which value of the scale parameter can be provided.
    This is due to the fact that CoreML upsample layer supports only statically known scale factors, and in certain cases the ONNX graph has dynamic scale inputs, even though the source program (e.g. pytorch code) uses static scales.