
容器 镜像 运行 构建
Home Assistant 插件,通过 wyoming协议 使用 https://github.com/rhasspy/wyoming-openwakeword%EF%BC%88huggingface%E6%BC%94%E7%A4%BA%EF%BC%89%E5%9C%A8 NVIDIA Jetson 设备上进行唤醒词检测。感谢 https://github.com/ms1design 贡献了这些Home Assistant和Wyoming容器!
OPENWAKEWORD_PRELOAD_MODEL传递模型名称以预加载自定义模型。例如,/share/openwakeword模型目录中包含jetson(jets_un)唤醒词模型*.tflite CPU 唤醒词模型*.onnx CUDA 唤醒词模型 [开发中]要求 Home Assistant
2023.9或更高版本。
docker-compose 示例如果要在 Jetson 设备上使用docker compose运行启用cuda的https://github.com/dusty-nv/jetson-containers/tree/master/packages/smart-home/homeassistant-core/ 语音助手管道,可参考完整示例 https://github.com/dusty-nv/jetson-containers/tree/master/packages/smart-home/wyoming/docker-compose.yaml%E3%80%82
yamlname: home-assistant-jetson version: "3.9" services: homeassistant: image: dustynv/homeassistant-core:latest-r36.2.0 restart: unless-stopped init: false privileged: true network_mode: host container_name: homeassistant hostname: homeassistant ports: - "8123:8123" volumes: - ha-config:/config - /etc/localtime:/etc/localtime:ro - /etc/timezone:/etc/timezone:ro openwakeword: image: dustynv/wyoming-openwakeword:latest-r36.2.0 restart: unless-stopped runtime: nvidia network_mode: host container_name: openwakeword hostname: openwakeword init: false ports: - "10400:10400/tcp" volumes: - ha-openwakeword-custom-models:/share/openwakeword - /etc/localtime:/etc/localtime:ro - /etc/timezone:/etc/timezone:ro environment: OPENWAKEWORD_CUSTOM_MODEL_DIR: /share/openwakeword OPENWAKEWORD_PRELOAD_MODEL: ok_nabu volumes: ha-config: ha-openwakeword-custom-models:
| 变量 | 类型 | 默认值 | 描述 |
|---|---|---|---|
OPENWAKEWORD_PORT | str | 10400 | 主机上使用的端口号 |
OPENWAKEWORD_THRESHOLD | float | 0.5 | 唤醒词模型阈值(0.0-1.0),值越高误激活越少 |
OPENWAKEWORD_TRIGGER_LEVEL | int | 1 | 注册检测前的激活次数,值越高误检测越少 |
OPENWAKEWORD_PRELOAD_MODEL | str | ok_nabu | 预加载的唤醒词模型名称或路径。模型名称应与自定义唤醒词模型训练时使用的名称一致。更改此值时,建议为https://github.com/dusty-nv/jetson-containers/tree/master/packages/smart-home/wyoming/assist-microphone%E5%AE%B9%E5%99%A8%E8%AE%BE%E7%BD%AE%E7%9B%B8%E5%90%8C%E7%9A%84%60WAKEWORD_NAME%60%E5%8F%98%E9%87%8F |
OPENWAKEWORD_CUSTOM_MODEL_DIR | str | /share/openwakeword | 自定义唤醒词模型所在目录路径(末尾不要加斜杠/) |
OPENWAKEWORD_DEBUG | bool | true | 记录DEBUG级别的日志 |
有关wyoming-openwakeword的配置详情,请参考官方文档:
[!NOTE] 自定义模型目录(
/share/openwakeword)中包含一个已训练的示例jetson(jets_un)唤醒词模型。要使用它,需在相应容器中将WAKEWORD_NAME设置为jets_un。
Home Assistant社区已https://github.com/fwartner/home-assistant-wakewords-collection%EF%BC%8C%E8%AF%A6%E6%83%85%E5%8F%AF%E5%8F%82%E8%80%83%E8%AF%A5GitHub%E4%BB%93%E5%BA%93%E3%80%82%E8%BF%99%E4%BA%9B%E6%A8%A1%E5%9E%8B%E4%B8%93%E4%B8%BA%60CPU%60%E8%AE%BE%E8%AE%A1%E3%80%82
若要训练新的CPU(*.tflite)或cuda(*.onnx)唤醒词模型,可参考https://github.com/dscripka%E7%9A%84https://github.com/dscripka/openWakeWord?tab=readme-ov-file#training-new-models%EF%BC%8C%E6%88%96%E7%9B%B4%E6%8E%A5%E4%BD%BF%E7%94%A8%E5%94%A4%E9%86%92%E8%AF%8D%E8%AE%AD%E7%BB%83%E7%8E%AF%E5%A2%83%E3%80%82
gpu的onnxruntime容器从源码构建openWakeWord(目前openWakeWord仍使用tflite模型而非onnx)如有问题,可通过以下途径获取帮助:
/r/homeassistantjetson-containers漏洞,请在https://github.com/dusty-nv/jetson-containers/issues[!NOTE] 本项目由Jetson AI Lab研究组创建。
wyoming-openwakeword:latest | |
|---|---|
| 别名 | wyoming-openwakeword |
| 要求 | L4T ['>=34.1.0'] |
| 依赖 | https://github.com/dusty-nv/jetson-containers/tree/master/packages/build/build-essential https://github.com/dusty-nv/jetson-containers/tree/master/packages/smart-home/homeassistant-base https://github.com/dusty-nv/jetson-containers/tree/master/packages/build/python |
| Dockerfile | https://github.com/dusty-nv/jetson-containers/tree/master/packages/smart-home/wyoming/openwakeword/Dockerfile |
| 镜像 | https://hub.docker.com/r/dustynv/wyoming-openwakeword/tags (2024-04-30, 0.3GB) |
| 说明 | 使用wyoming协议的openWakeWord,适用于Home Assistant。基于https://github.com/home-assistant/addons/blob/master/openwakeword/Dockerfile和https://github.com/rhasspy/wyoming-openwakeword |
启动容器可使用https://github.com/dusty-nv/jetson-containers/tree/master/docs/run.md%E5%92%8Chttps://github.com/dusty-nv/jetson-containers/tree/master/docs/run.md#autotag%EF%BC%8C%E6%88%96%E6%89%8B%E5%8A%A8%E7%BC%96%E5%86%99%60docker run`命令:
bash# 自动拉取或构建兼容的容器镜像 jetson-containers run $(autotag openwakeword) # 或使用'docker run'(需指定镜像、挂载等) sudo docker run --runtime nvidia -it --rm --network=host openwakeword:35.2.1
https://github.com/dusty-nv/jetson-containers/tree/master/docs/run.md%E4%BC%9A%E5%B0%86%E5%8F%82%E6%95%B0%E8%BD%AC%E5%8F%91%E7%BB%99%60docker run
,并添加一些默认配置(如--runtime nvidia、挂载/data`缓存、检测设备)
https://github.com/dusty-nv/jetson-containers/tree/master/docs/run.md#autotag%E4%BC%9A%E6%9F%A5%E6%89%BE%E4%B8%8EJetPack/L4T%E7%89%88%E6%9C%AC%E5%85%BC%E5%AE%B9%E7%9A%84%E5%AE%B9%E5%99%A8%E9%95%9C%E5%83%8F%E2%80%94%E2%80%94%E6%9C%AC%E5%9C%B0%E9%95%9C%E5%83%8F%E3%80%81%E4%BB%93%E5%BA%93%E6%8B%89%E5%8F%96%E7%9A%84%E9%95%9C%E5%83%8F%E6%88%96%E6%9E%84%E5%BB%BA%E7%9A%84%E9%95%9C%E5%83%8F%E5%9D%87%E5%8F%AF
要将主机目录挂载到容器中,使用-v或--volume标志:
bashjetson-containers run -v /主机路径:/容器路径 $(autotag openwakeword)
要启动容器并运行命令(而非交互式shell):
bashjetson-containers run $(autotag openwakeword) my_app --abc xyz
可传递任何docker run支持的选项,执行前会打印完整命令。
如上文所示使用https://github.com/dusty-nv/jetson-containers/tree/master/docs/run.md#autotag%EF%BC%8C%E5%BF%85%E8%A6%81%E6%97%B6%E4%BC%9A%E6%8F%90%E7%A4%BA%E6%9E%84%E5%BB%BA%E5%AE%B9%E5%99%A8%E3%80%82%E8%8B%A5%E8%A6%81%E6%89%8B%E5%8A%A8%E6%9E%84%E5%BB%BA%EF%BC%8C%E9%9C%80%E5%85%88%E5%AE%8C%E6%88%90https://github.com/dusty-nv/jetson-containers/tree/master/docs/setup.md%EF%BC%8C%E7%84%B6%E5%90%8E%E8%BF%90%E8%A1%8C%EF%BC%9A
bashjetson-containers build openwakeword
上述依赖会被构建到容器中,并在构建过程中进行测试。运行时添加https://github.com/dusty-nv/jetson-containers/tree/master/jetson_containers/build.py%E5%8F%AF%E6%9F%A5%E7%9C%8B%E6%9E%84%E5%BB%BA%E9%80%89%E9%A1%B9%E3%80%82
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。






探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式
通过 Docker 登录认证访问私有仓库
无需登录使用专属域名
Kubernetes 集群配置 Containerd
K3s 轻量级 Kubernetes 镜像加速
VS Code Dev Containers 配置
Podman 容器引擎配置
HPC 科学计算容器配置
ghcr、Quay、nvcr 等镜像仓库
Harbor Proxy Repository 对接专属域名
Portainer Registries 加速拉取
Nexus3 Docker Proxy 内网缓存
需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单
docker search 限制
站内搜不到镜像
离线 save/load
插件要用 plugin install
WSL 拉取慢
安全与 digest
新手拉取配置
镜像合规机制
manifest unknown
no matching manifest(架构)
invalid tar header(解压)
TLS 证书失败
DNS 超时
域名连通性排查
410 Gone 排查
402 与流量用尽
401 认证失败
429 限流
D-Bus 凭证提示
413 与超大单层
来自真实用户的反馈,见证轩辕镜像的优质服务