增加部署代码

This commit is contained in:
琉璃月光
2025-09-05 14:29:33 +08:00
parent ad52ab9125
commit 471c718d42
951 changed files with 14072 additions and 264 deletions

4
onnx_val/valonnx.py Normal file
View File

@ -0,0 +1,4 @@
import onnx
model = onnx.load("/home/hx/yolo/onnx_val/yolo11n-obb.onnx")
for i, output in enumerate(model.graph.output):
print(f"Output {i}: {output.name}, shape: {output.type.tensor_type.shape}")