timm
ONNX
Safetensors

Maybe wrong input_size in config.json?

#8
by kingwingfly - opened
"input_size": [
      3,
      448,
      448
    ],

But with onnx runtime loaded, its:

inputs: [
        Outlet {
            name: "input",
            dtype: Tensor {
                ty: Float32,
                shape: [
                    -1,
                    448,
                    448,
                    3,
                ],
...

So 3, 448, 448 VS 448, 448, 3, which is correct?

Sign up or log in to comment