Skip to content

Commit 2cf2cb6

Browse files
authored
Merge pull request #1 from Adenialzz/main
Fix Indent Error
2 parents 4a18390 + 6923c45 commit 2cf2cb6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def gt_creator(input_size, stride, label_lists=[]):
6161
batch_size = len(label_lists)
6262
w = input_size
6363
h = input_size
64-
ws = w // stride
64+
ws = w // stride
6565
hs = h // stride
6666
s = stride
6767
gt_tensor = np.zeros([batch_size, hs, ws, 1+1+4+1])
@@ -125,4 +125,4 @@ def loss(pred_conf, pred_cls, pred_txtytwth, label):
125125

126126

127127
if __name__ == "__main__":
128-
pass
128+
pass

0 commit comments

Comments
 (0)