PaddlePaddle / Paddle3D

A 3D computer vision development toolkit based on PaddlePaddle. It supports point-cloud object detection, segmentation, and monocular 3D object detection models.
Apache License 2.0
565 stars 141 forks source link

model debug infer 如何跳到模型结构处呢 #239

Closed Kerry678231 closed 1 year ago

Kerry678231 commented 1 year ago

如题请教一下: 比如debug 运行如下代码 deploy/centerpoint/python/infer.py 等模型推理跑前向的时候如何跳到模型里面呢?请问如何设置或者发下参考代码

FlyingQianMM commented 1 year ago

推理阶段的静态图模型无法跳入模型里面。debug的话,可以基于动态图,参考评估阶段

Kerry678231 commented 1 year ago

好的。了解了