Skip to content

Commit 564da98

Browse files
authored
Update yolo.py
removed score logging
1 parent 5510f02 commit 564da98

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

partinet/DynamicDet/models/yolo.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,6 @@ def forward_once(self, x, profile=False):
240240
self.get_score = False
241241
if self.get_score:
242242
return score
243-
print(f"This micrograph has difficulty score {score[:, 0][0]} for threshold {self.dy_thres}\n")
244243
need_second = self.training or (not self.dynamic) or score[:, 0] < self.dy_thres
245244
need_first_head = self.training or (self.dynamic and score[:, 0] >= self.dy_thres)
246245

0 commit comments

Comments
 (0)