English 中文(简体)
如何获得产出层面?
原标题:onnx graph, how to get output dimensions?

• 如何将产出层的层面纳入内心网?

我可以查阅图表,但产出方面没有任何方面:

~/onnx-tensorrt/third_party/onnx/onnx/tools/net_drawer.py --input ./weights/tiny_3l_v5_11_608.onnx  --output ./weights/tiny_3l_v5_11_608.dot --embed_docstring

Terveisin, Markus

问题回答

你们只能使用

from onnx import shape_inference
inferred_model = shape_inference.infer_shapes(original_model)

并在<条码>中找到星体。

For full doc, see https://github.com/onnx/onnx/blob/master/docs/ShapeInference.md

Hei,

https://github.com/onnx/onnx-tensorrt has this feature.

我这样做了。

onnx2trt yolo_tiny_3l.onnx  -t yolo_tiny_3l.onnx.txt -l -v

Terveisin, Markus

If you are using Java apis to load ONNX model, then get the metadata information from session. Metadata contains the details about input and output dimensions.

Tryloading the .onnx file into this online ON Romudioiser tool (Netron)

You can also use model.graph.output to print the output shape:

from onnx import shape_inference
inferred_model = shape_inference.infer_shapes(original_model)
print(inferred_model.graph.output)




相关问题
Get webpage contents with Python?

I m using Python 3.1, if that helps. Anyways, I m trying to get the contents of this webpage. I Googled for a little bit and tried different things, but they didn t work. I m guessing that this ...

What is internal representation of string in Python 3.x

In Python 3.x, a string consists of items of Unicode ordinal. (See the quotation from the language reference below.) What is the internal representation of Unicode string? Is it UTF-16? The items ...

What does Python s builtin __build_class__ do?

In Python 3.1, there is a new builtin function I don t know in the builtins module: __build_class__(...) __build_class__(func, name, *bases, metaclass=None, **kwds) -> class Internal ...

what functional tools remain in Python 3k?

I have have read several entries regarding dropping several functional functions from future python, including map and reduce. What is the official policy regarding functional extensions? is lambda ...

Building executables for Python 3 and PyQt

I built a rather simple application in Python 3.1 using PyQt4. Being done, I want the application to be distributed to computers without either of those installed. I almost exclusively care about ...

热门标签