Replies: 1 comment 1 reply
-
from pathlib import Path print out the version of the transformers libraryprint("transformers version:", t.version) models = [ for model_id in models:
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying to export flan-t5-xl to onnx format using the command
python convert_to_onnx.py -m 'google/flan-t5-xl' -o --output /dir --use_gpu -e
but It gives the following error
When i tried to debug it. Added print(ort_session) at line 230, in export_onnx_models
it says
Is there anything I'm doing wrong? I successfully exported the model using optimum but the results are different from original model. So i thought to give it a try using onnxruntime directly
Beta Was this translation helpful? Give feedback.
All reactions