forked from ambianic/ambianic-edge
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.local.yaml
41 lines (35 loc) · 1.32 KB
/
config.local.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Ambianic base config
dynaconf_merge: true
default:
data_dir: ./data
logging:
file: ./data/ambianic-log.txt
level: INFO
timeline:
event_log: ./data/timeline-event-log.yaml
notifications:
providers: {}
template:
title: "[Ambianic.ai] ${event} recognized"
body: >
${event} event has been recognized by the system.
Visit ${event_details_url} for more details.
sources: {}
ai_models:
image_detection:
model:
tflite: /opt/ambianic-edge/ai_models/mobilenet_ssd_v2_coco_quant_postprocess.tflite
edgetpu: /opt/ambianic-edge/ai_models/mobilenet_ssd_v2_coco_quant_postprocess_edgetpu.tflite
labels: /opt/ambianic-edge/ai_models/coco_labels.txt
face_detection:
model:
tflite: /opt/ambianic-edge/ai_models/mobilenet_ssd_v2_face_quant_postprocess.tflite
edgetpu: /opt/ambianic-edge/ai_models/mobilenet_ssd_v2_face_quant_postprocess_edgetpu.tflite
labels: /opt/ambianic-edge/ai_models/coco_labels.txt
top_k: 2
fall_detection:
model:
tflite: /opt/ambianic-edge/ai_models/posenet_mobilenet_v1_100_257x257_multi_kpt_stripped.tflite
edgetpu: /opt/ambianic-edge/ai_models/posenet_mobilenet_v1_075_721_1281_quant_decoder_edgetpu.tflite
labels: /opt/ambianic-edge/ai_models/pose_labels.txt
pipelines: {}