Repository URL to install this package:
|
Version:
0.0.0 ▾
|
import os
current_path = os.path.dirname(__file__)
base_dir = os.path.dirname(current_path)
model =os.path.join(base_dir,"config/yolov3.cfg")
weights = os.path.join(base_dir,"weights/yolov3.weights")
images = os.path.join(base_dir,"data/samples")
classes = os.path.join(base_dir,"data/coco.names")
output = os.path.join(base_dir,'output')
batch_size = 1
img_size = 416
n_cpu = 8
conf_thres = 0.5
nms_thres = 0.4