now I have freezed a MaskRCNN model from “https://github.com/matterport/Mask_RCNN”. first I save this keras MaskRCNN model into a h5 type file; then I tranverse the keras model to TensorFlow model; last I freeze the TensorFlow model to pb type file;
when I use “relay.frontend.from_tensorflow” to parse the TensorFlow pb type file, there are some oprators which TVM can not support. The unsupported Ops are ‘DenseToDenseSetOperation’, ‘SparseToDense’, ‘Unique’.
Have anyone used TVM to deploy TF MaskRCNN model??? Where can I get the model???
tks very much!