Toby Roseman
Toby Roseman
Yes, coremltools currently does not support PyTorch models with dictionary inputs or outputs. However it's fairly simple to workaround this limitation, just create a wrapper PyTorch model that converts to/from...
It looks like your PyTorch model has an inplace `slice` operation on a tensor of complex numbers. Given that the Core ML Framework does not support complex numbers, I don't...
Thanks for the code. I can reproduce this issue. I suspect the root issue here is that the Core ML Framework does not support complex number inputs. So this may...
Coremltools does offer some partial support for complex numbers, but I believe we can not support models which input/output complex numbers. Also in order to support a PyTorch ops we...
@alealv - thanks for the pull request. In order to merge this, we need unit tests. Please add unit tests for these new aliases.
@katelyn-chen - I don't know. That is a PyTorch issue. I suggest you ask in a PyTorch forum.
@alealv - if you want to add `conv1d` support for `torch.script`, that's fine. We'll just need unit tests for this functionality. FYI - coremltools support for `torch.script` is only "experimental"....
This looks promising for fixing #1846. However, additional changes will be necessary to support Python 3.12 (#2143). We'll need to update the versions of TensorFlow and PyTorch [we use for...
@johnnynunez - yes, the first release candidate for TensorFlow 2.16.0 does have 3.12 wheels. I think we'll need to wait at least until the TensorFlow's official 2.16 release before we...
I don't think the `except` part of the change is necessary. We no longer support Python 3.5.