xxf1ow

Results 11 comments of xxf1ow

我尝试使用智能指针, 但是类析构了, 占用的内存/显存没有释放 (jetson, trt 后端) ``` // load auto det_model = std::make_unique(model, params, config, option); if (!det_model->Initialized()) std::exit(); // free det_model.reset(); ``` 大佬们帮忙看看 @jiangjiajun @rainyfly

今天也是等待回复的一天...

今天也是等待回复的一天...

> https://github.com/PaddlePaddle/FastDeploy/blob/develop/fastdeploy/runtime/backends/tensorrt/trt_backend.cc 把这个里面context_、engine_ destroy()掉试试 在 `fastdeploy/runtime/backends/tensorrt/trt_backend.h` 添加 ``` ~TrtBackend() { if (parser_) { parser_.reset(); } if (context_) { context_.reset(); engine_.reset(); builder_.reset(); network_.reset(); } } ``` 在 `fastdeploy/runtime/runtime.h` 添加 ``` ~Runtime()...

This is because the passed in classes cannot find the same value in `OID/csv_folder/class-descriptions-boxable.csv`

16班 25 ThinkWD https://github.com/ThinkWD/OpenMMLabCamp_myHomeWork/tree/main/homework_02

ID: ThinkWD 编号: 16班25, https://github.com/ThinkWD/OpenMMLabCamp_myHomeWork/tree/main/homework_01

遇到同样的问题,openvino 别的模型都正常只有 ocr 不行。 debug 了一下发现 onnx 初始化 is_input_dynamic_ 是 true,输入 shape 为空,应该是推理时确定。 openvino 初始化 is_input_dynamic_ 是 false,输入 shape 是 [0,3,0,0],进推理后卡在推理阶段