Skip to content

Commit

Permalink
update infer lib && fix blaze postprocess
Browse files Browse the repository at this point in the history
  • Loading branch information
MRXLT committed Sep 14, 2020
1 parent a91ca42 commit 724d99a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmake/paddlepaddle.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ message( "WITH_GPU = ${WITH_GPU}")
# Paddle Version should be one of:
# latest: latest develop build
# version number like 1.5.2
SET(PADDLE_VERSION "1.7.2")
SET(PADDLE_VERSION "1.8.4")

if (WITH_GPU)
SET(PADDLE_LIB_VERSION "${PADDLE_VERSION}-gpu-cuda${CUDA_VERSION_MAJOR}-cudnn7-avx-mkl")
Expand Down
2 changes: 1 addition & 1 deletion python/paddle_serving_app/reader/image_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ def __call__(self, image_with_bbox):
for key in image_with_bbox:
if key == "image":
continue
if ".lod" in key:
if ".lod" in key or "im_shape" in key:
continue
fetch_name = key
bbox_result = self._get_bbox_result(image_with_bbox, fetch_name,
Expand Down

0 comments on commit 724d99a

Please sign in to comment.