├── LICENSE ├── README.md ├── bdd100k_annotation.py ├── convert.py ├── font ├── FiraMono-Medium.otf └── SIL Open Font License.txt ├── kmeans.py ├── model_data ├── bdd100k_anchors.txt └── bdd100k_classes.txt ├── train.py ├── train.txt ├── yolo.py ├── yolo3 ├── __init__.cpython-36.pyc ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── model.cpython-36.pyc │ └── utils.cpython-36.pyc ├── model.py └── utils.py └── yolov3.cfg /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Pedestrian-Detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Pedestrian-Detection/HEAD/README.md -------------------------------------------------------------------------------- /bdd100k_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Pedestrian-Detection/HEAD/bdd100k_annotation.py -------------------------------------------------------------------------------- /convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Pedestrian-Detection/HEAD/convert.py -------------------------------------------------------------------------------- /font/FiraMono-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Pedestrian-Detection/HEAD/font/FiraMono-Medium.otf -------------------------------------------------------------------------------- /font/SIL Open Font License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Pedestrian-Detection/HEAD/font/SIL Open Font License.txt -------------------------------------------------------------------------------- /kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Pedestrian-Detection/HEAD/kmeans.py -------------------------------------------------------------------------------- /model_data/bdd100k_anchors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Pedestrian-Detection/HEAD/model_data/bdd100k_anchors.txt -------------------------------------------------------------------------------- /model_data/bdd100k_classes.txt: -------------------------------------------------------------------------------- 1 | person 2 | -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Pedestrian-Detection/HEAD/train.py -------------------------------------------------------------------------------- /train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Pedestrian-Detection/HEAD/train.txt -------------------------------------------------------------------------------- /yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Pedestrian-Detection/HEAD/yolo.py -------------------------------------------------------------------------------- /yolo3/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Pedestrian-Detection/HEAD/yolo3/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /yolo3/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Pedestrian-Detection/HEAD/yolo3/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /yolo3/__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Pedestrian-Detection/HEAD/yolo3/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /yolo3/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Pedestrian-Detection/HEAD/yolo3/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /yolo3/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Pedestrian-Detection/HEAD/yolo3/model.py -------------------------------------------------------------------------------- /yolo3/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Pedestrian-Detection/HEAD/yolo3/utils.py -------------------------------------------------------------------------------- /yolov3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeadingIndiaAI/Pedestrian-Detection/HEAD/yolov3.cfg --------------------------------------------------------------------------------