-
Notifications
You must be signed in to change notification settings - Fork 7
/
config.json
31 lines (31 loc) · 923 Bytes
/
config.json
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
{
"name": "CORAL TPU Rest API",
"version": "0.1.22",
"slug": "coral-api",
"description": "CORAL REST API compatible with Deepstack addon",
"url": "https://github.com/grinco/HASS-coral-rest-api",
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
"startup": "application",
"boot": "auto",
"map": ["config:rw"],
"usb": true,
"devices": ["/dev/apex_0"],
"udev": true,
"init": false,
"ports": {
"5000/tcp": 5000
},
"ports_description": {
"5000/tcp": "API"
},
"options": {
"MODEL_URL": "https://github.com/google/mediapipe/raw/master/mediapipe/examples/coral/models/object-detector-quantized_edgetpu.tflite",
"LABELS_URL": "https://raw.githubusercontent.com/google/mediapipe/master/mediapipe/examples/coral/models/object_detection_labelmap.txt",
"ACCESS_LOG": false
},
"schema": {
"MODEL_URL": "str",
"LABELS_URL": "str",
"ACCESS_LOG": "bool"
}
}