From 02953d8d1dc03b4a4d60362eab5629abb7008c3a Mon Sep 17 00:00:00 2001 From: dengkaipeng Date: Mon, 1 Jun 2020 11:02:52 +0000 Subject: [PATCH] remove print --- ppdet/modeling/anchor_heads/yolo_head.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/ppdet/modeling/anchor_heads/yolo_head.py b/ppdet/modeling/anchor_heads/yolo_head.py index 5ff4b84c7..2b1b3da78 100644 --- a/ppdet/modeling/anchor_heads/yolo_head.py +++ b/ppdet/modeling/anchor_heads/yolo_head.py @@ -188,9 +188,6 @@ class YOLOv3Head(object): out = fluid.layers.resize_nearest( input=input, scale=float(scale), name=name) else: - print("upsample", upsample) - import sys - sys.stdout.flush() assert isinstance( upsample, dict), "Unknown upsample method: {}".format(upsample) assert upsample['type'] in [ -- GitLab