ezkl icon indicating copy to clipboard operation
ezkl copied to clipboard

ezkl cli gen-settings: [graph] a node is missing required params: padding

Open pdibitonto opened this issue 5 months ago • 3 comments

I was testing ezkl with a publicly available model YOLOv8s-worldv2 but I'm receiving an error when I fire the gen-settings command, the error is the following: [graph] a node is missing required params: padding

Steps to reproduce the bug

To reproduce the bug:

  1. Download the YOLOv8s-worldv2 model here

  2. Export the model to onnx with the following python script:

from ultralytics import YOLO
model = YOLO("yolov8s-worldv2.pt")
model.export(format = "onnx")
  1. In the same directory, try the gen-settings cli command as follow:
ezkl gen-settings --model yolov8s-worldv2.onnx --input-visibility hashed --output-visibility public

Device and Operating System

OS: Ubuntu 22.04.4 Version: 22.04.4 LTS Processor: Intel® Core™ i7-10750H Memory: 32 GB

Additional Information

  1. Python version: 3.8.16+
  2. Required python module for onnx export: ultralytics

pdibitonto avatar Aug 28 '24 13:08 pdibitonto