-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Unable to load onnx models into Triton #53
Comments
Hi @amirhmk! The model extentions are hardcoded based on the framework type of the model in ClearML.
EDIT: I just saw that your framework in clearml is properly set. That's weird and probably a bug on our end. Please check if the first fix works for you, we'll investigate the second :) Hope this helps! :) |
Hi @thepycoder, option 1 worked, thanks! Adding Also as a small aside, I found out that if one passes a file (path) for |
Excellent!
Possibly yes, this might be a remnant of earlier ONNX days, I'll have to check.
Yeah, I think that makes sense, I'll discuss it with the devs :) Thanks a lot for the suggestion! |
@amirhmk Aren't these already optional CLI parameters? i.e. you don't have to specify them if their already specified in the config file. |
@ainoam so most of those are, but the input(or output) shapes/types are mandatory. |
@amirhmk Can you give an example of your CLI invocation, and mark which parameters seem to be unnecessarily mandatory (i.e. also specified in your aux file) |
Hi there,
I have been working on deploying our inference pipeline on
clearml-serving
using thedocker-compose
approach. I've hashed out most of the issues thus far thanks to the community, now I am facing another issue while loadingonnx
models.I am getting the following error:
I exec'd into the container to see what's inside
/models
, and under/models/mmdet/1
there was amodel.bin
but nomodel.onnx
. I created the modeling using the OutputModel. I also tried doing it through the CLI:but the same thing. I'm guessing when the folder structure is getting set up, this file gets renamed to a
.bin
extention. Should this be happening or am I doing something wrong?When I download the file from the models section in the portal, it's an onnx file, exactly the one I uploaded. So not sure where this renaming is happening tbh...
The text was updated successfully, but these errors were encountered: