Skip to content

Commit ca9e9f6

Browse files
committed
Merge remote-tracking branch 'upstream/main' into sound-generator
2 parents e0ae77a + ccf9db3 commit ca9e9f6

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/docker-github-dev-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: DEV - build & publish Arduino dev containers
1+
name: DEV - build & publish Arduino dev-latest containers
22

33
on:
44
workflow_dispatch:
@@ -93,4 +93,4 @@ jobs:
9393
cache-to: type=gha,mode=max
9494
provenance: false
9595
build-args: |
96-
REGISTRY=${{ env.DEV_REGISTRY_PATH }}
96+
REGISTRY=${{ env.DEV_REGISTRY_PATH }}

models/models-list.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ models:
1818
- yolox-object-detection:
1919
runner: brick
2020
name : "General purpose object detection - YoloX"
21-
description: "General purpose object detection model based on YoloX Nano. This model is trained on the COCO dataset and can detect 80 different object classes."
21+
description: "General purpose object detection model based on YoloX-Nano. This model is trained on the COCO dataset and can detect 80 different object classes."
2222
model_configuration:
2323
"EI_OBJ_DETECTION_MODEL": "/models/ootb/ei/yolo-x-nano.eim"
2424
model_labels:
@@ -1115,7 +1115,7 @@ models:
11151115
- keyword-spotting-hey-arduino:
11161116
runner: brick
11171117
name : "Keyword spotting - Hey Arduino!"
1118-
description: "A keyword-spotting model to detect the 'Hey Arduino!' in audio recordings"
1118+
description: "A keyword-spotting model to detect the 'Hey Arduino!' in audio streams."
11191119
model_configuration:
11201120
"EI_KEYWORD_SPOTTING_MODEL": "/models/ootb/ei/keyword-spotting-hey-arduino.eim"
11211121
model_labels:
@@ -1180,5 +1180,6 @@ models:
11801180
ei-model-url: "https://studio.edgeimpulse.com/public/749446/live"
11811181
source-model-id: "glass-breaking"
11821182
source-model-url: "https://studio.edgeimpulse.com/public/749446/live"
1183+
private: true
11831184
bricks:
11841185
- arduino:audio_classifier

src/arduino/app_bricks/video_objectdetection/brick_compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ services:
1313
volumes:
1414
- "${CUSTOM_MODEL_PATH:-/home/arduino/.arduino-bricks/ei-models/}:${CUSTOM_MODEL_PATH:-/home/arduino/.arduino-bricks/ei-models/}"
1515
- "/run/udev:/run/udev"
16-
command: ["--model-file", "${EI_OBJ_DETECTION_MODEL:-/models/ootb/ei/yolo-x-nano.eim}", "--dont-print-predictions", "--mode", "streaming", "--force-target", "--preview-original-resolution", "--camera", "${VIDEO_DEVICE:-/dev/video1}"]
16+
command: ["--model-file", "${EI_OBJ_DETECTION_MODEL:-/models/ootb/ei/yolo-x-nano.eim}", "--dont-print-predictions", "--mode", "streaming", "--preview-original-resolution", "--camera", "${VIDEO_DEVICE:-/dev/video1}"]
1717
healthcheck:
1818
test: [ "CMD-SHELL", "wget -q --spider http://ei-video-obj-detection-runner:4912 || exit 1" ]
1919
interval: 2s

0 commit comments

Comments
 (0)