diff --git a/python/paddle_serving_client/__init__.py b/python/paddle_serving_client/__init__.py index 25e3ee481c1fe7e83fe49c47b1a84eee63320d81..3794bce27c4164bbaa6b90833bb8229b65a00bf4 100644 --- a/python/paddle_serving_client/__init__.py +++ b/python/paddle_serving_client/__init__.py @@ -301,9 +301,7 @@ class Client(object): if batch == False: feed_i[key] = feed_i[key][np.newaxis, :] if isinstance(feed_i[key], np.ndarray): - print("feed_i_key shape", feed_i[key].shape) shape_lst.extend(list(feed_i[key].shape)) - print("shape list", shape_lst) int_shape.append(shape_lst) else: int_shape.append(self.feed_shapes_[key]) @@ -327,9 +325,7 @@ class Client(object): if batch == False: feed_i[key] = feed_i[key][np.newaxis, :] if isinstance(feed_i[key], np.ndarray): - print("feed_i_key shape", feed_i[key].shape) shape_lst.extend(list(feed_i[key].shape)) - print("shape list", shape_lst) float_shape.append(shape_lst) else: float_shape.append(self.feed_shapes_[key])