YOLOv3 / app.py
Vladimir Iashin
(part 2/2): fixed app file and readme
8aa51d1
raw
history blame contribute delete
308 Bytes
from WebsiteYOLO.gradio_app import App
App(
weights_path='./WebsiteYOLO/weights/yolov3.weights',
config_path='./WebsiteYOLO/cfg/yolov3_608x608.cfg',
labels_path='./WebsiteYOLO/data/coco.names',
font_path='./WebsiteYOLO/data/FreeSansBold.ttf',
examples_glob="./WebsiteYOLO/data/*.jpg",
)