onnx-coreml icon indicating copy to clipboard operation
onnx-coreml copied to clipboard

ONNX to Core ML Converter

Results 55 onnx-coreml issues
Sort by recently updated
recently updated
newest added

@jamesr66a I am trying to use the ONNX model provided at the end of this [Microsoft Tutorial for Lung-diseases predictions](https://github.com/Azure/AzureChestXRay/blob/master/AzureChestXRay_AMLWB/Code/04_Tutorial/Tutorial_1_Pre_Built_Model_Using_Microsoft_AI_to_Build_a_Lung-Disease_Prediction_Model_Using_Chest_X-Ray_Images.ipynb) using AI. At the end of the tutorial, a ONNX...

clarification

I download the yolov3.onnx from onnx's model zoo, then I got this exception, here is my code: ```python import onnx import onnx_coreml if __name__ == "__main__": model = onnx.load('yolov3.onnx') cml...

clarification

The Conv layer info is as below: attrs:{'dilations': [2, 2], 'group': 1, 'kernel_shape': [3, 3], 'pads': [0, 0, 0, 0], 'strides': [1, 1]} children:[] input_tensors:{} inputs:['189', '214_transposed'] metadata:{} name:'215' op_type:'Conv'...

question
needs discussion

I was looking at adding some element-wise operations *(`Neg`, `Abs` and `Log`)* and noticed the results for `Log` seem off? ```python import onnx import torch import onnx_coreml import onnxruntime import...

needs discussion

## Question According to the README: “Code for ONNX to Core ML conversion is now available through coremltools python package and coremltools.converters.onnx.convert is the only supported API for conversion. “,...

question