visualbuffer / parkingslot

Automated parking occupancy detection

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Where are yolo_anchors.txt and coco_classes.txt?

valerietram88 opened this issue · comments

I'm trying execute Parking_Slot_YOLO.py. It calls yolo.py in which there are these codes:

class YOLO(object):
_defaults = {
"model_path": "drive/MyDrive/ToEditParkingDetection/parkingslotmaster/model_data/yolo.h5", #
"anchors_path": 'model_data/yolo_anchors.txt',
"classes_path": 'model_data/coco_classes.txt',
"score" : 0.15,
"iou" : 0.4,
"model_image_size" : (416, 416),
"gpu_num" : 1,
}

May someone tell me where I can find or how to generate those .txt files please?