Skip to content

Commit 94b5100

Browse files
committed
Fix typos in comments for clarity in human_detector.py, correcting "arguements" to "arguments" and "availible" to "available".
1 parent 09ce42f commit 94b5100

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

fmpose3d/lib/yolov3/human_detector.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
import os
1616
import sys
1717
import random
18-
import pickle as pkl
1918
import argparse
2019

2120
from fmpose3d.lib.yolov3.util import *
@@ -63,7 +62,7 @@ def write(x, img, colors):
6362

6463
def arg_parse():
6564
""""
66-
Parse arguements to the detect module
65+
Parse arguments to the detect module
6766
6867
"""
6968
parser = argparse.ArgumentParser(description='YOLO v3 Cam Demo')
@@ -104,7 +103,7 @@ def load_model(args=None, CUDA=None, inp_dim=416):
104103
assert inp_dim % 32 == 0
105104
assert inp_dim > 32
106105

107-
# If there's a GPU availible, put the model on GPU
106+
# If there's a GPU available, put the model on GPU
108107
if CUDA:
109108
model.cuda()
110109

0 commit comments

Comments
 (0)