jakaskerl One thing I really need clarification on as well is the new conversion process.
I have the RTMPose3D ONNX that accepts RGB img float16[1,3,384,288]. Based off my best understanding of the docs, I built the config.json as follows:
"inputs": [
{
"name": "input",
"dtype": "float16",
"input_type": "image",
"shape": [
1,
3,
384,
288
],
"layout": "NCHW",
"preprocessing": {
"mean": [
123.675,
116.28,
103.53
],
"scale": [
58.395,
57.12,
57.375
],
"dai_type": "RGBF16F16F16p"
}
}
],
My first question: dai_type, is it(in this context of the onnx model) correct?
So then I move on to RVC4 conversion on hub, all my stuff is prefilled by this JSON(nice!) except for the encoding types

Do I just select none->none here? Or BGR->RGB? It seems like the default for RVC4 in all the examples shows an input of BGR888i, is this taken care of by the converter? I guess it feels like a lot more guidance is needed because when the documentation and UI say "the model" at various points I have no idea whether they mean "the base ONNX model" or "the post RVC2/4 conversion model"