Instructions to use kssteven/ibert-roberta-base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use kssteven/ibert-roberta-base with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="kssteven/ibert-roberta-base")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("kssteven/ibert-roberta-base") model = AutoModelForMaskedLM.from_pretrained("kssteven/ibert-roberta-base") - Notebooks
- Google Colab
- Kaggle
RuntimeError: ONNX export failed: Couldn't export Python operator SymmetricQuantFunction
#1
by Huanyu - opened
when i export quantization aware trained model to onnx with transformers.onnx, it failed with this error
I'm getting the same error. Could you find any solution? Thank you very much!