NotImplementedError: The following operators are not implemented: ['aten::im2col']

Hello @pzq

As I discussed in previous post, I was able to convert PyTorch model into relay model. I was able to convert squeezeBERT.

However, when I tried to convert convBERT pre-trained model from huggingface,

  model = transformers.ConvBertForSequenceClassification.from_pretrained('YituTech/conv-bert-base', return_dict=False)

It shows the following errors:

NotImplementedError: The following operators are not implemented: [‘aten::im2col’, ‘aten::multiply’]

Thanks for your reply :slight_smile: