Closed HussainHaris closed 2 years ago
Thanks for the report. This looks like something that should be runnable. We will take a look.
Hey @srikris , any updates on where I could go from here?
Sorry, no update yet. Marking this as a P1.
Appreciated!
Having the same issue.
Is this still an issue in the latest version of coremltools? If so, please provided standalone code to reproduce the problem.
Since we have not received steps to reproduce this problem, I'm going to close this issue. If we get steps to reproduce the problem, I will reopen the issue.
🐞Unable to Convert tf FasterRCNN Resnet50 trained on COCO 2018_01_28 to CoreML!
Hi,
After loading FasterRCNN Resnet50 .pb frozen weights directly from Tensorflow, I specify the input tensor as 1 300x300 RGB image since thats the input the Resnet50 feature extractor will ultimately use in the graph! Using the Tensorflow convert tfcoreml, I cannot convert this model. I'm aware FasterRCNN is a cyclic graph, so I specified iOS minimum deployment model 13. If someone could point out how I am incorrectly converting this model I would deeply appreciate it!
System environment (please complete the following information):
Additional context
I also tried extracting the subgraph between Preprocess/sub and the 4 output tensors and then ran the same conversion script, producing a different issue regarding Nonetype(), I don't know if it was necessary for me to extract the subgraph of the feature extractor/resnet though so I just reran the convertor on the entire frozen model and attained the above error. Overall I just would love/appreciate help converting a Faster RCNN into iOS .mlmodel !