Skip to content

Commit e7703b1

Browse files
committed
Remove trailing whitespace
1 parent 37bc9a0 commit e7703b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/accuracy_checker/accuracy_checker/adapters/reidentification.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def configure(self):
5656
self.joining_method = self.get_value_from_config('joining_method')
5757
self.target_out = self.get_value_from_config('target_out')
5858
self.keep_shape = self.get_value_from_config('keep_shape')
59-
self.mean_pooling = self.get_value_from_config('mean_pooling')
59+
self.mean_pooling = self.get_value_from_config('mean_pooling')
6060

6161
def process(self, raw, identifiers, frame_meta):
6262
"""
@@ -73,7 +73,7 @@ def process(self, raw, identifiers, frame_meta):
7373
if self.mean_pooling:
7474
# Shape: (1, 128, 768) -> (1, 768)
7575
prediction = np.mean(prediction, axis=1)
76-
76+
7777
if self.grn_workaround:
7878
# workaround: GRN layer
7979
prediction = self._grn_layer(prediction)

0 commit comments

Comments
 (0)