pylint exceptions

This commit is contained in:
Sefik Ilkin Serengil 2024-06-07 20:37:48 +01:00
parent f35abd1ec2
commit 429c6b8f67
2 changed files with 4 additions and 2 deletions

View File

@ -190,7 +190,9 @@ def _get_new_box(src_w, src_h, bbox, scale):
y = bbox[1] y = bbox[1]
box_w = bbox[2] box_w = bbox[2]
box_h = bbox[3] box_h = bbox[3]
scale = min((src_h - 1) / box_h, min((src_w - 1) / box_w, scale)) scale = min(
(src_h - 1) / box_h, min((src_w - 1) / box_w, scale)
) # pylint: disable=nested-min-max
new_width = box_w * scale new_width = box_w * scale
new_height = box_h * scale new_height = box_h * scale
center_x, center_y = box_w / 2 + x, box_h / 2 + y center_x, center_y = box_w / 2 + x, box_h / 2 + y

View File

@ -17,7 +17,7 @@ from torch.nn import (
Module, Module,
) )
# pylint: disable=super-with-arguments, too-many-instance-attributes, unused-argument, redefined-builtin # pylint: disable=super-with-arguments, too-many-instance-attributes, unused-argument, redefined-builtin, too-few-public-methods
keep_dict = { keep_dict = {
"1.8M": [ "1.8M": [