Spaces:
Running
Running
Vladimir Iashin
commited on
Commit
·
8aa51d1
1
Parent(s):
395f60e
(part 2/2): fixed app file and readme
Browse files
app.py
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from WebsiteYOLO.gradio_app import App
|
2 |
+
|
3 |
+
App(
|
4 |
+
weights_path='./WebsiteYOLO/weights/yolov3.weights',
|
5 |
+
config_path='./WebsiteYOLO/cfg/yolov3_608x608.cfg',
|
6 |
+
labels_path='./WebsiteYOLO/data/coco.names',
|
7 |
+
font_path='./WebsiteYOLO/data/FreeSansBold.ttf',
|
8 |
+
examples_glob="./WebsiteYOLO/data/*.jpg",
|
9 |
+
)
|