Spaces:
Runtime error
Runtime error
Bug fix
Browse files
app.py
CHANGED
@@ -18,7 +18,7 @@ from reportlab.lib.styles import getSampleStyleSheet
|
|
18 |
from reportlab.platypus import Image, SimpleDocTemplate, Table, TableStyle
|
19 |
from ultralytics import YOLO
|
20 |
|
21 |
-
with open('
|
22 |
config = json.load(f)
|
23 |
|
24 |
FACE_DET_TRESH = config['FACE_DET_TRESH']
|
|
|
18 |
from reportlab.platypus import Image, SimpleDocTemplate, Table, TableStyle
|
19 |
from ultralytics import YOLO
|
20 |
|
21 |
+
with open('config.json', 'r') as f:
|
22 |
config = json.load(f)
|
23 |
|
24 |
FACE_DET_TRESH = config['FACE_DET_TRESH']
|