I'm trying to convert a PyTorch forward Transformer model to CoreML but am running into several issues, like these errors:
"For mlprogram, inputs with infinite upper_bound is not allowed. Please set upper.
bound" 570 • to a positive value in "RangeDim)" for the "inputs" param in ct.convert().'
raise NotImplementedError ( 259 "inplace_ops pass doesn't yet support append op inside conditional"
Are there any more samples besides https://developer.apple.com/videos/play/tech-talks/10154
The sample in that video an imageType is used as input but in my model text is the input (and the output).
I also get warned that converting "torch script" is experimental but in the video it says it a torch script is required to convert (though I know the video is a few years old).