coremltools 5.0b3
Pre-release
Pre-release
- Native M1 support for Python 3.8 and Python 3.9
- Adds the
compute_units
parameter to MLModel and coremltools.convert. Use this to specify where your models can run:ALL
- use all compute units available, including the neural engine.CPU_ONLY
- limit the model to only use the CPU.CPU_AND_GPU
- use both the CPU and GPU, but not the neural engine.
- With the above change we are deprecating the
useCPUOnly
parameter for MLModel and coremltools.convert. - For ML programs the default compute precision has changed from Float 32 to Float 16. This can be overridden with the
compute_precision
parameter ofcoremltools.convert
. - Support for TensorFlow 2.5
- Removed scipy dependency
- Various bug fixes and optimizations