未验证 提交 5b197f4b 编写于 作者: Z zp7 提交者: GitHub

fix test_yolo crash when use offical model (#1684)

上级 c0bdc1f7
......@@ -22,9 +22,10 @@ int main() {
// ../../../test/models/googlenet
// ../../../test/models/mobilenet
auto time1 = time();
if (paddle_mobile.Load(g_yolo, true)) {
if (paddle_mobile.Load(std::string(g_yolo) + "/model",
std::string(g_yolo) + "/params", true)) {
auto time2 = time();
std::cout << "load cost :" << time_diff(time1, time1) << "ms" << std::endl;
std::cout << "load cost :" << time_diff(time1, time2) << "ms" << std::endl;
std::vector<int64_t> dims{1, 3, 227, 227};
Tensor input_tensor;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册