轩辕镜像 官方专业版
轩辕镜像
专业版
轩辕镜像 官方专业版
轩辕镜像
专业版
首页个人中心搜索镜像
交易
充值流量¥7起我的订单
文档
工具
提交工单页面收录
wyoming-openwakeword

dustynv/wyoming-openwakeword

dustynv

Home Assistant插件,使用openWakeWord通过wyoming协议在NVIDIA Jetson设备上实现唤醒词检测,支持自定义模型和CPU的tflite模型,适用于Jetson设备上的语音助手管道。

下载次数: 0状态:社区镜像维护者:dustynv仓库类型:镜像最近更新:2 年前
让 AI 帮你使用轩辕镜像? · 展开查看说明 · 点击收起说明

如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。

只需在 AI 对话中先发送下面这句话即可:

请先完整阅读并严格遵守以下文档中的全部规则与要求:

https://xuanyuan.cloud/agents.md

在未充分阅读并理解该文档前,不要生成任何命令、配置、修改建议、故障排查方案或技术回答。后续所有输出都必须严格以该文档中的规范为最高优先级执行。

查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。

中文简介
下载命令
镜像标签列表与下载命令
使用轩辕镜像,把时间还给真正重要的事。
点击查看

openwakeword

容器 镜像 运行 构建

https://www.home-assistant.io/ 插件,通过 https://www.home-assistant.io/integrations/wyoming/ 使用 https://github.com/rhasspy/wyoming-openwakeword%EF%BC%88https://huggingface.co/spaces/davidscripka/openWakeWord%EF%BC%89%E5%9C%A8 NVIDIA Jetson 设备上进行唤醒词检测。感谢 https://github.com/ms1design 贡献了这些Home Assistant和Wyoming容器!

特性

  • 与 Jetson设备 上的 https://github.com/dusty-nv/jetson-containers/tree/master/packages/smart-home/homeassistant-core 容器以及不同主机上的Home Assistant兼容
  • 支持自定义唤醒词,通过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://www.home-assistant.io/voice_control/%EF%BC%8C%E5%8F%AF%E5%8F%82%E8%80%83%E5%AE%8C%E6%95%B4%E7%A4%BA%E4%BE%8B https://github.com/dusty-nv/jetson-containers/tree/master/packages/smart-home/wyoming/docker-compose.yaml%E3%80%82

yaml
name: home-assistant-jetson
version: "3.9"
services:
  homeassistant:
    image: docker.xuanyuan.run/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: docker.xuanyuan.run/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_PORTstr10400主机上使用的端口号
OPENWAKEWORD_THRESHOLDfloat0.5唤醒词模型阈值(0.0-1.0),值越高误激活越少
OPENWAKEWORD_TRIGGER_LEVELint1注册检测前的激活次数,值越高误检测越少
OPENWAKEWORD_PRELOAD_MODELstrok_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_DIRstr/share/openwakeword自定义唤醒词模型所在目录路径(末尾不要加斜杠/)
OPENWAKEWORD_DEBUGbooltrue记录DEBUG级别的日志

配置

有关wyoming-openwakeword的配置详情,请参考https://www.home-assistant.io/voice_control/install_wake_word_add_on#enabling-wake-word-for-your-voice-assistant%EF%BC%9A

训练自定义唤醒词

[!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%A8https://colab.research.google.com/drive/1q1oe2zOyZp7UsB3jJiQ1IFn8z5YfjwEb%E3%80%82

待办事项

  • 基于启用gpu的onnxruntime容器从源码构建openWakeWord(目前openWakeWord仍使用tflite模型而非onnx)
  • 开发支持自动合成数据生成的自定义唤醒词模型训练容器

支持

如有问题,可通过以下途径获取帮助:

一般Home Assistant支持:

  • Home Assistant ***聊天服务器
  • Home Assistant https://community.home-assistant.io/
  • 加入Reddit子版块/r/homeassistant
  • 如发现Home Assistant漏洞,请在https://github.com/home-assistant/addons/issues

NVIDIA Jetson设备上的Home Assistant支持:

  • NVIDIA Jetson AI Lab https://www.jetson-ai-lab.com/tutorial-intro.html
  • Jetson AI Lab - Home Assistant集成https://forums.developer.nvidia.com/t/jetson-ai-lab-home-assistant-integration/288225
  • 如发现jetson-containers漏洞,请在https://github.com/dusty-nv/jetson-containers/issues

[!NOTE] 本项目由https://www.jetson-ai-lab.com/research.html%E5%88%9B%E5%BB%BA%E3%80%82

容器信息
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
   Dockerfilehttps://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%99https://docs.docker.com/engine/reference/commandline/run/%E5%91%BD%E4%BB%A4%EF%BC%9A

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%99https://docs.docker.com/engine/reference/commandline/run/%EF%BC%8C%E5%B9%B6%E6%B7%BB%E5%8A%A0%E4%B8%80%E4%BA%9B%E9%BB%98%E8%AE%A4%E9%85%8D%E7%BD%AE%EF%BC%88%E5%A6%82%60--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

要将主机目录挂载到容器中,使用https://docs.docker.com/engine/reference/commandline/run/#volume%E6%88%96https://docs.docker.com/engine/reference/commandline/run/#volume%E6%A0%87%E5%BF%97%EF%BC%9A

bash
jetson-containers run -v /主机路径:/容器路径 $(autotag openwakeword)

要启动容器并运行命令(而非交互式shell):

bash
jetson-containers run $(autotag openwakeword) my_app --abc xyz

可传递任何https://docs.docker.com/engine/reference/commandline/run/%E6%94%AF%E6%8C%81%E7%9A%84%E9%80%89%E9%A1%B9%EF%BC%8C%E6%89%A7%E8%A1%8C%E5%89%8D%E4%BC%9A%E6%89%93%E5%8D%B0%E5%AE%8C%E6%95%B4%E5%91%BD%E4%BB%A4%E3%80%82

构建容器

如上文所示使用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

bash
jetson-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

镜像拉取方式

您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。

轩辕镜像加速拉取命令点我查看更多 wyoming-openwakeword 镜像标签

docker pull docker.xuanyuan.run/dustynv/wyoming-openwakeword:<标签>

使用方法:

  • 登录认证方式
  • 免认证方式

DockerHub 原生拉取命令

docker pull dustynv/wyoming-openwakeword:<标签>

轩辕镜像配置手册

按平台快速找到配置文档

Docker

登录仓库拉取

登录认证 · 私有仓库

专属域名拉取

免登录 · 高速拉取

Linux

Docker 镜像配置

Windows / Mac

Docker Desktop 配置

MacOS OrbStack

OrbStack 容器

Apple Container

macOS 原生容器

Docker Compose

Compose 项目配置

NAS

群晖

Synology 配置

飞牛

fnOS 镜像配置

绿联

绿联 NAS

威联通

QNAP 配置

极空间

极空间 NAS

Unraid

Unraid NAS

企业仓库

其他仓库

ghcr · Quay · nvcr

Harbor 镜像源

Proxy Repository 对接

Portainer 镜像源

Registries 配置

Nexus 镜像源

Docker Proxy 缓存

开发工具

Dev Containers

VS Code 开发容器

Podman

Podman 配置指南

Singularity / Apptainer

HPC 科学计算容器

Kubernetes

K8s Containerd

Kubernetes · Containerd

K3s

轻量级集群

面板 / 网络

爱快路由

iKuai 镜像加速

宝塔面板

一键配置镜像源

AI

用 AI 使用轩辕镜像

agents.md · AI 对话 · 提示词

一键安装

一键安装 Docker

Linux Docker 一键安装

需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单

镜像拉取常见问题

功能

版本功能对比

功能对比 · 版本选择

支持的镜像仓库

Docker Hub · GCR · GHCR

新手拉取配置

登录 · 专属域名 · 配置

docker search 限制

专属域名 · Hub 搜索

不支持 push

仅支持 pull · 不支持

拉取速度原因

带宽 · 缓存 · 冷热镜像

错误码

402 与流量用尽

402 · 流量包 · 充值

401 认证失败

401 · docker login

manifest unknown

标签错误 · 镜像不存在

410 Gone 排查

410 · Docker 升级

429 限流

免费版 · 请求频率

其他报错

DNS 超时

DNS 解析 · 网络超时

TLS 证书失败

no matching manifest(架构)

账号

失败是否计费

manifest · blob · 计费

申请开发票(企业 / 个人)

企业 · 个人 · 工单

修改登录密码

网站 · 仓库 · 重置

注销账户

工单 · 数据 · 注销

原理

mirrors 不生效

daemon.json · 重启

去掉域名前缀

docker tag · 重命名

指定架构拉取

ARM64 · AMD64 · 多架构

latest 与「最新」

digest · 版本号 · 标签

查看全部问题→

用户好评

来自真实用户的反馈,见证轩辕镜像的优质服务

用户头像

oldzhang

运维工程师

Linux服务器

5

"Docker访问体验非常流畅,大镜像也能快速完成下载。"

轩辕镜像
镜像详情
...
dustynv/wyoming-openwakeword
教程轩辕镜像功能与使用教程
定价查看流量套餐与价格
热门查看热门 Docker 镜像推荐
博客Docker 镜像公告与技术博客
专业版 · 高速稳定拉取镜像
高速镜像下载·在线技术支持·99.95% SLA 保障·付费会员免广告
50GB 仅 ¥7/年
专业版 · 高速稳定拉取镜像
50GB 仅 ¥7/年
高速镜像下载·在线技术支持·99.95% SLA 保障·付费会员免广告
商务合作:点击复制邮箱
用户协议·隐私政策·©2024-2026 源码跳动
用户协议·隐私政策©2024-2026 杭州源码跳动科技有限公司商务合作:点击复制邮箱

更多 wyoming-openwakeword 镜像推荐

rhasspy/wyoming-openwakeword logo

rhasspy/wyoming-openwakeword

rhasspy
用于openWakeWord唤醒词检测系统的Wyoming协议服务器
14 次收藏100万+ 次下载
8 个月前更新
rhasspy/wyoming-piper logo

rhasspy/wyoming-piper

rhasspy
Wyoming协议服务器,用于支持piper文本转语音系统
30 次收藏500万+ 次下载
4 个月前更新
rhasspy/wyoming-whisper logo

rhasspy/wyoming-whisper

rhasspy
Wyoming协议服务器,用于faster-whisper语音转文本系统
21 次收藏100万+ 次下载
12 天前更新
wyoming/cpi logo

wyoming/cpi

wyoming
暂无描述
1万+ 次下载
6 年前更新
rhasspy/wyoming-speech-to-phrase logo

rhasspy/wyoming-speech-to-phrase

rhasspy
提供快速且个性化的本地语音转文本功能
1 次收藏100万+ 次下载
2 个月前更新

查看更多 wyoming-openwakeword 相关镜像