This repository has been archived by the owner on Feb 7, 2023. It is now read-only.
1.0b3 Beta
Pre-release
Pre-release
- 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 usingcustom_conversion_function
, through which value of thescale
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.