Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Add initial GPU support #4

Open
wants to merge 17 commits into
base: master
Choose a base branch
from
Open

Conversation

edurenye
Copy link

This is a work in progress.
I think for whisper it is working, but I'm not sure how to check it.
And for piper it is giving me an error unrecognized arguments: --cuda, but I got the instructions from here: https://github.com/rhasspy/piper At the end it says that it should work just installing onnxruntime-gpu and running piper with the --cuda argument.

What am I missing?

I guess this will conflict with those that just want to use the CPU, how can we handle that? Making different images?
Ex: piper and piper-gpu

@edurenye
Copy link
Author

edurenye commented Aug 24, 2023

Closes #3

@DBaker85
Copy link

DBaker85 commented Sep 12, 2023

Just wanted to leave my 2cents here:
I tried your whisper changes locally and it is working perfectly on my 1080ti and Docker.
VRam is assigned and the container works as well. Home assistant also recognised and used it perfectly.
Nice one!

(Did not try Piper)

@edurenye
Copy link
Author

Piper does not work because of this: rhasspy/rhasspy3#49

@wdunn001
Copy link

wdunn001 commented Oct 5, 2023

Whisper is still targeting 20.04 is there a reason for that?

@wdunn001
Copy link

wdunn001 commented Oct 5, 2023

This may need to be its own image since the majority of users would not want the cuda version

@wdunn001
Copy link

wdunn001 commented Oct 5, 2023

could this be split into 2 tickets one for whisper and one for piper. The whisper portion is in reality the more useful of the two and benefits more from this feature. If piper is experiencing issues.

@edurenye
Copy link
Author

edurenye commented Oct 6, 2023

@wdunn001 From the documentation https://github.com/guillaumekln/faster-whisper/ it says it requires cuDNN 8 for CUDA 11, and for those versions of CUDA and cuDNN the highest version of ubuntu available is 20.04, and I had to look for it because it was not working with the image I set for the other containers sadly.
And updating to CUDA 12 is not planned in the very short term. See an explanation here: SYSTRAN/faster-whisper#47 (comment).

@edurenye
Copy link
Author

edurenye commented Oct 6, 2023

Sorry, editing because I missunderstood your comment.
Yes, makes sense to make it 2 different images, I can add that.

But I guess for better maintainability the solution we add for one should be the same as for the others, for that is I think is better to have the conversation in a single issue and PR.
If you need to use it right now you can just add the changes to your local Dockerfile and build it.
Or if you need to use CUDA 12 you could try the workarounds that they comment in here: SYSTRAN/faster-whisper#153 (comment)

@edurenye
Copy link
Author

edurenye commented Oct 6, 2023

And I'll try to add porcupine1 too

@wdunn001
Copy link

wdunn001 commented Oct 6, 2023

Awesome! I am happy to help if you need anything. Would we want to add the docker arguments for the CUDA image to the documentation here?

@edurenye
Copy link
Author

edurenye commented Oct 6, 2023

I added the changes.
I have not tested the new porcupine1 container, since that software does not support my language yet.

And yes, ofc we should document this, also I was thinking should we add a docker-compose.yml file?
It made sense for me since I use home assistant and need the 3 services. But now that porcupine1 has been added I am not sure anymore since as far as I know porcupine1 and openwakeword do the same, which is quite confusing for me.

@edurenye
Copy link
Author

edurenye commented Oct 6, 2023

But in the README.md file right now there is just the documentation for using it pulling the images, not building them, so that will depend on the tags the maintainer might wanna use. Should we add building instructions to the README.md file?

@wdunn001
Copy link

wdunn001 commented Oct 6, 2023

I think so for sure we can create a contributors section. I'll work on it I will be building it for the first time this weekend so I'll try and document the process.

@edurenye
Copy link
Author

edurenye commented Oct 6, 2023

I will give you the docker-compose files and a starting point.

@edurenye
Copy link
Author

edurenye commented Oct 6, 2023

I just added it, tell me how it works for you, you can create your own docker-compose.x.yml file for your use case.

I have not added porcupine1 to the docker compose because it uses the same port as openwakeword, so for that particular case it could be added in the custom extend file.

@wdunn001
Copy link

wdunn001 commented Oct 8, 2023

ok so I am getting an error deploying this via compose or run

usage: main.py [-h] --model {tiny,tiny-int8,base,base-int8,small,small-int8,medium,medium-int8} --uri URI --data-dir DATA_DIR [--download-dir DOWNLOAD_DIR] [--device DEVICE] [--language LANGUAGE] [--compute-type COMPUTE_TYPE] [--beam-size BEAM_SIZE] [--debug]
main.py: error: the following arguments are required: --model, --uri, --data-dir
/run.sh: line 3: --uri: command not found
/run.sh: line 4: --data-dir: command not found
/run.sh: line 5: --download-dir: command not found

It needs additional params in contrast with the other build.

These appear to be supplied by the run.sh file and I see its called in the Dockerfile.

I added commands to the GPU compose file identical to those in the NOGPU version and they work fine and made a pr. Its only the ones in the run.sh that seem to not work.

I am on Ubuntu 22.04 with latest docker is that matters.

@edurenye
Copy link
Author

edurenye commented Oct 9, 2023

This is weird, according to the documentation, the only thinks not extended should be volumes_from and depends_on. We can follow this discussion in the PR that you created edurenye#1

@AnkushMalaker
Copy link

I needed to add --device cuda to actually load the whisper model onto my GPU. I second that we could split this into different branches to handle GPU for whisper, piper and wakeword. I made a branch for that, not sure if I should raise this as a PR.

  • removed --cuda for piper as that isn't working upstream yet.
  • changed the default data directories to /var/data to be consistent with some other docker compose files I saw.

New to contributing, happy to hear thoughts.

https://github.com/AnkushMalaker/wyoming-addons/tree/gpu

@edurenye
Copy link
Author

I rebased with the last chnages from master and the typos in the readme file.

I don´t think we need to create another branch for the meanwhile you can just have an extend file where you use GPU options for whisper and openwakeword and nongpu for piper.

And regarding /var/data, I am generally against storing user data in a system folder. And passing all the folder to the docker container might load a lot of data that is not needed from other applications.

@wdunn001
Copy link

@edurenye agreed using cpu for piper seems to be more than sufficient. I am still experiencing issues with openwakeword but it may just be my environment. I'll pull down the changes here and try again. I'll push any fixes I find to the PR on your branch.

@@ -0,0 +1,35 @@
FROM nvidia/cuda:12.1.1-cudnn8-runtime-ubuntu22.04

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perhaps we remove this file in the interim to get rid of dead code?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I do not see it as dead code, when this issue gets fixed it should just work right away.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ok sounds good

@@ -0,0 +1,32 @@
FROM nvidia/cuda:12.1.1-cudnn8-runtime-ubuntu22.04
Copy link

@wdunn001 wdunn001 Oct 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

remove to get rid of deadcode?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I do not see it as dead code either, the people that wants to use it can just use it extending the docker compose or use it directly with docker run as documented here: https://github.com/rhasspy/wyoming-porcupine1/blob/master/README.md but adding the cuda stuff.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sounds good

.gitignore Outdated
@@ -0,0 +1,12 @@
# OpenWakeWord

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

perhaps we reference managed volumes instead to prevent this?

i.e.
volumes:
openwakeword-data:
whisper-data:
piper-data:

this is what I did in my version.
we could also add -gpu for volumes connected to gpu enabled instances in the GPU compose file so that we can keep data seperate between instance types.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you mean non binded mounts? But then adding custom models (thinking mainly about OpenWakeWord here) is hard, with binded mounts you can just move the model to that directory. Also I don't think there will be a case where you want to move from GPU to NONGPU changing models, but probably I am wrong there.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think I agree with you here, probably the best way is to not bind them by default and then you can bind them extending the docker compose and point wherever you have the custom model.

Or maybe we could look at passing it as a parameter, haven't looked into it, I'm still fighting to generate the custom model actually.

docker compose down
```

### Run with GPU

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should we reference documentation on how to setup docker for gpu? (I can of course add it in a seperate pr)

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, good idea!

@Maxcodesthings
Copy link

Maxcodesthings commented Oct 25, 2023

I have tried applying the contents of this PR to my local instance. I do not see the faster-whisper implementation use GPU over CPU.

I have conflated the dockerfiles as such and focused on only using GPU for whisper container:

  whisper:
    container_name: whisper
    build:
      context: /opt/wyoming-addons/whisper/
      dockerfile: GPU.Dockerfile
    # image: rhasspy/wyoming-whisper:latest
    restart: unless-stopped
    ports:
      - 10300:10300
    volumes:
      - /opt/homeassistant/whisper:/data
    command: 
      - --model
      - medium-int8
      - --language
      - en
    deploy:
      resources:
        reservations:
          devices:
            - driver: nvidia
              count: 1
              capabilities: [gpu]

I can tell my GPU is passed through because it appears in nvidia-smi on the container
NVIDIA_Share_gj0fFevK7R

However when watching GPU when processing my speech the usage does not increase, and when watching CPU the usage clearly spikes since it's the CPU processing my speech

How have you all tested that this implementation of faster-whisper is working? I would like to do the same on my machine

Edit:

Found the issue!

You are missing --device in your compose

command: 
      - --model
      - small
      - --language
      - en
      - --device
      - cuda

@edurenye
Copy link
Author

Good finiding! Was not documented, but that parameter exists in https://github.com/rhasspy/wyoming-faster-whisper/blob/master/wyoming_faster_whisper/__main__.py

@mreilaender
Copy link

Can u resolve the conflicts? I would love to see the improvements from using the GPU directly :)

@mreilaender
Copy link

Doesn't work with piper since wyoming-piper doesn't declare the --cuda argument. I created a PR

baudneo and others added 6 commits March 12, 2024 11:21
Adds --cuda arg support
Adds bind mounts for __main__.py and process.py to add --cuda arg support to piper until the upstream project includes it.
@edurenye
Copy link
Author

I agree there @tannisroot, let's start with NVIDIA until we know a good way to support all the other GPUs.
If somebody tells me how to do it, I would appreciate it and add it, otherwise I'll not break my head on it.

I have simplified the files and left all the services that conflict, commented. I think this makes it easier to extend and maintain.
Also, I would appreciate it if somebody could test the commented services, otherwise I'll just assume that they work.
I have ordered some 'ATOM Echo ESP32' speakers so when I have them I'll be able to try some of the wake word services.

Also at some point I'll smash all the commits since they make the rebases quite hard.

@edurenye
Copy link
Author

I simplified the PR a lot, now there is no need for having 2 different Dockerfiles for each service, instead I pass the BASE image as an argument, and it seems to work fine.

@edurenye
Copy link
Author

BTW I do not know why whisper is still with "debian:bullseye-slim", I know piper had issues, but whisper works fine for me, so I moved it to "debian:bookworm-slim" to simplify things.

@spitfire
Copy link

Any way to run it as standalone containers? I don't have GPU in my HA host, but I do on another one.

@edurenye
Copy link
Author

Yes @spitfire, I have my Raspberry Pi with HA and another computer where I use this repo with GPU.
You just need to clone or download my branch and follow the GPU instructions from the Readme file.

@spitfire
Copy link

spitfire commented Mar 13, 2024

Yes @spitfire, I have my Raspberry Pi with HA and another computer where I use this repo with GPU. You just need to clone or download my branch and follow the GPU instructions from the Readme file.

I've tried using instructions from readme on your gpu branch (cloned it from the repo) .

I'm getting:

~/docker/edurenye-wyoming-addons-gpu] - [2024-03-13 16:47:37]
└─[0] docker compose -f docker-compose.gpu.yml up -d
[+] Running 0/0
 ⠋ Container edurenye-wyoming-addons-gpu-wyoming-whisper-1       C...                                                           0.0s
 ⠋ Container edurenye-wyoming-addons-gpu-wyoming-openwakeword-1  Creating                                                       0.0s
 ⠋ Container edurenye-wyoming-addons-gpu-wyoming-piper-1         Cre...                                                         0.0s
Error response from daemon: unknown or invalid runtime name: nvidia

The previous build command seems to have worked fine.

I have other containers running on this VM with GPU passed through, and I know they are able to use it (I have nvidia docker runtime installed on it).

Edit:

Fixed that with:

sudo nvidia-ctk runtime configure --runtime=docker
sudo systemctl restart docker
sudo nvidia-ctk runtime configure --runtime=containerd
sudo systemctl restart containerd

for some reason other containers using gpu were fine without it.

Now I'm getting this though:

docker compose -f docker-compose.gpu.yml up -d && docker compose -f docker-compose.gpu.yml logs -f
[+] Running 3/3
 ✔ Container edurenye-wyoming-addons-gpu-wyoming-piper-1         Sta...                                                         1.1s
 ✔ Container edurenye-wyoming-addons-gpu-wyoming-whisper-1       S...                                                           0.7s
 ✔ Container edurenye-wyoming-addons-gpu-wyoming-openwakeword-1  Started                                                        1.0s
wyoming-openwakeword-1  | INFO:root:Ready
wyoming-piper-1         | bash: /${RUN_SCRIPT}: No such file or directory
wyoming-piper-1         | bash: /${RUN_SCRIPT}: No such file or directory
wyoming-piper-1 exited with code 0
wyoming-piper-1 exited with code 0
wyoming-whisper-1       | INFO:__main__:Ready
wyoming-piper-1         | bash: /${RUN_SCRIPT}: No such file or directory
wyoming-piper-1 exited with code 127
wyoming-piper-1         | bash: /${RUN_SCRIPT}: No such file or directory
wyoming-piper-1 exited with code 127
wyoming-piper-1 exited with code 127
wyoming-piper-1 exited with code 127
wyoming-piper-1 exited with code 127
wyoming-piper-1 exited with code 127
wyoming-piper-1 exited with code 127
wyoming-piper-1 exited with code 127

@edurenye
Copy link
Author

Oh, that error might be me messing something up in the last commit, I'll take a look.

@edurenye
Copy link
Author

Sorry @spitfire I didn't know that the args were not available during run time, now I'm using envs during run time, this should fix the issue, pull the changes and try again please.

Also, the base was not working and the individual Dockerfiles neither, now I set default values that do not use GPU. Everything should work again now.

@spitfire
Copy link

spitfire commented Mar 13, 2024

Pulled last commit:

remote: Enumerating objects: 33, done.
remote: Counting objects: 100% (33/33), done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 17 (delta 15), reused 17 (delta 15), pack-reused 0
Unpacking objects: 100% (17/17), 1.51 KiB | 387.00 KiB/s, done.
From https://github.com/edurenye/wyoming-addons-gpu
   bce8610..1e1a1f5  gpu        -> origin/gpu
Updating bce8610..1e1a1f5
Fast-forward
 docker-compose.base.yml | 3 ---
 openwakeword/Dockerfile | 2 +-
 piper/Dockerfile        | 7 ++++---
 porcupine1/Dockerfile   | 2 +-
 snowboy/Dockerfile      | 2 +-
 vosk/Dockerfile         | 2 +-
 whisper-cpp/Dockerfile  | 2 +-
 whisper/Dockerfile      | 2 +-
 8 files changed, 10 insertions(+), 12 deletions(-)

then stopped (even reran build) and started containers again, but still that happens:


[+] Running 3/3
 ✔ Container edurenye-wyoming-addons-gpu-wyoming-openwakeword-1  Started                                                       12.2s
 ✔ Container edurenye-wyoming-addons-gpu-wyoming-whisper-1       S...                                                          12.1s
 ✔ Container edurenye-wyoming-addons-gpu-wyoming-piper-1         Sta...                                                        11.9s
wyoming-openwakeword-1  | INFO:root:Ready
wyoming-openwakeword-1  | INFO: Created TensorFlow Lite XNNPACK delegate for CPU.
wyoming-piper-1         | bash: /${RUN_SCRIPT_ENV}: No such file or directory
wyoming-piper-1         | bash: /${RUN_SCRIPT_ENV}: No such file or directory
wyoming-piper-1 exited with code 0
wyoming-piper-1         | bash: /${RUN_SCRIPT_ENV}: No such file or directory
wyoming-piper-1 exited with code 0
wyoming-piper-1         | bash: /${RUN_SCRIPT_ENV}: No such file or directory
wyoming-piper-1 exited with code 127

Should the - RUN_SCRIPT=run-gpu.sh in docker-compose.gpu.yml be updated too?

@edurenye
Copy link
Author

Thanks for testing @spitfire, I could run it in my machine, which is weird. Which version of docker and docker compose are you using?

Will look into this more tomorrow after work if I have time.

But no, the - RUN_SCRIPT=run-gpu.sh in docker-compose.gpu.yml should not change, there is still the RUN_SCRIPT argument that work during build time, and it passes the value to the environment variable RUN_SCRIPT_ENV that runs during run time, according to the documentation (https://docs.docker.com/build/building/variables/).

I might be missing something.

@spitfire
Copy link

Just upgraded docker to 5:25.0.4-1debian.12bookworm (and nvidia runtime to 1.14.6-1), and it still seems to be happening

@edurenye
Copy link
Author

This was a big facepalm, since I was using the '-d' option and not really using piper or any of the others until now that I received the M5 ATOM ECHO, I didn't see it fail.

So I fixed the issue with the entrypoint not accepting env variables directly.

Then I realized CUDA was not working, I updated the python files because they were not matching the version 1.5.0 anymore.
Still not working then I used @synesthesiam recommendation from rhasspy/wyoming#9 (comment), that did not work since wouldn't install piper-phonemize, but found a workaround here rhasspy/piper-phonemize#10 (comment).

CUDA was finally working, but then the non GPU was not working, so I ended up splitting the two files again, now both versions work, finally!

So, please try again @spitfire 🤞

@spitfire
Copy link

Doesn't crash anymore, but doesn't work either.

I've replaced the default voice in base config, but when asked to do TTS it fails like this:

wyoming-openwakeword-1  | INFO:root:Ready
wyoming-piper-1         | INFO:wyoming_piper.download:Downloaded /data/pl_PL-darkman-medium.onnx (https://huggingface.co/rhasspy/piper-voices/resolve/v1.0.0/pl/pl_PL/darkman/medium/pl_PL-darkman-medium.onnx)
wyoming-piper-1         | INFO:wyoming_piper.download:Downloaded /data/pl_PL-darkman-medium.onnx.json (https://huggingface.co/rhasspy/piper-voices/resolve/v1.0.0/pl/pl_PL/darkman/medium/pl_PL-darkman-medium.onnx.json)
wyoming-piper-1         | INFO:__main__:Ready
wyoming-whisper-1       | INFO:__main__:Ready
wyoming-whisper-1       | INFO:faster_whisper:Processing audio with duration 00:11.720
wyoming-whisper-1       | INFO:wyoming_faster_whisper.handler: Dziękuję.
wyoming-piper-1         | ERROR:asyncio:Task exception was never retrieved
wyoming-piper-1         | future: <Task finished name='wyoming event handler' coro=<AsyncEventHandler.run() done, defined at /usr/local/lib/python3.8/dist-packages/wyoming/server.py:31> exception=FileNotFoundError(2, 'No such file or directory')>
wyoming-piper-1         | Traceback (most recent call last):
wyoming-piper-1         |   File "/usr/local/lib/python3.8/dist-packages/wyoming/server.py", line 41, in run
wyoming-piper-1         |     if not (await self.handle_event(event)):
wyoming-piper-1         |   File "/usr/local/lib/python3.8/dist-packages/wyoming_piper/handler.py", line 53, in handle_event
wyoming-piper-1         |     raise err
wyoming-piper-1         |   File "/usr/local/lib/python3.8/dist-packages/wyoming_piper/handler.py", line 48, in handle_event
wyoming-piper-1         |     return await self._handle_event(event)
wyoming-piper-1         |   File "/usr/local/lib/python3.8/dist-packages/wyoming_piper/handler.py", line 108, in _handle_event
wyoming-piper-1         |     wav_file: wave.Wave_read = wave.open(output_path, "rb")
wyoming-piper-1         |   File "/usr/lib/python3.8/wave.py", line 510, in open
wyoming-piper-1         |     return Wave_read(f)
wyoming-piper-1         |   File "/usr/lib/python3.8/wave.py", line 160, in __init__
wyoming-piper-1         |     f = builtins.open(f, 'rb')
wyoming-piper-1         | FileNotFoundError: [Errno 2] No such file or directory: ''
wyoming-whisper-1       | INFO:faster_whisper:Processing audio with duration 00:02.330
wyoming-whisper-1       | INFO:wyoming_faster_whisper.handler: Wyłącz lampki.
wyoming-piper-1         | ERROR:asyncio:Task exception was never retrieved
wyoming-piper-1         | future: <Task finished name='wyoming event handler' coro=<AsyncEventHandler.run() done, defined at /usr/local/lib/python3.8/dist-packages/wyoming/server.py:31> exception=FileNotFoundError(2, 'No such file or directory')>
wyoming-piper-1         | Traceback (most recent call last):
wyoming-piper-1         |   File "/usr/local/lib/python3.8/dist-packages/wyoming/server.py", line 41, in run
wyoming-piper-1         |     if not (await self.handle_event(event)):
wyoming-piper-1         |   File "/usr/local/lib/python3.8/dist-packages/wyoming_piper/handler.py", line 53, in handle_event
wyoming-piper-1         |     raise err
wyoming-piper-1         |   File "/usr/local/lib/python3.8/dist-packages/wyoming_piper/handler.py", line 48, in handle_event
wyoming-piper-1         |     return await self._handle_event(event)
wyoming-piper-1         |   File "/usr/local/lib/python3.8/dist-packages/wyoming_piper/handler.py", line 108, in _handle_event
wyoming-piper-1         |     wav_file: wave.Wave_read = wave.open(output_path, "rb")
wyoming-piper-1         |   File "/usr/lib/python3.8/wave.py", line 510, in open
wyoming-piper-1         |     return Wave_read(f)
wyoming-piper-1         |   File "/usr/lib/python3.8/wave.py", line 160, in __init__
wyoming-piper-1         |     f = builtins.open(f, 'rb')
wyoming-piper-1         | FileNotFoundError: [Errno 2] No such file or directory: ''
wyoming-whisper-1       | INFO:faster_whisper:Processing audio with duration 00:02.260
wyoming-whisper-1       | INFO:wyoming_faster_whisper.handler: Wyłącz lampki.

@edurenye
Copy link
Author

Probably that is why my M5 ATOM ECHO follows the order but gets stuck before answering 😞

Well, I do not understand this error, I'll need help with it. This error seems to come from wyoming_piper, could you give me a hint @synesthesiam please?

@spitfire
Copy link

spitfire commented Mar 14, 2024

Probably that is why my M5 ATOM ECHO follows the order but gets stuck before answering 😞

Well, I do not understand this error, I'll need help with it. This error seems to come from wyoming_piper, could you give me a hint @synesthesiam please?

My echos had problems with responding even if that was not the case. You could set up the regular piper add-on on HA, change the pipeline to use it and see if that resolves the issue.

I've modified my docker-compose.base.yml to use command: [ "--voice", "pl_PL-darkman-medium" ] if that helps. It's the same voice I've been using with the official add-on, and as you can see it is being downloaded.

@edurenye
Copy link
Author

What I would recommend you to do is to create a docker-compose.pl.yml, there you can select which services to use from which file, so you could use whisper from the docker-compose.gpu.yml and piper from docker-compose.base.yml for example and there you can also overwrite the command.

Next thing I'll try for my echo is to use the base service, if that does not work I'll use it in HA, but I don't want to add this kind of things to HA since that would make the system slow or overheat, it's a RPi4.

Also, I'll try to upgrade the Ubuntu image, see if that fixes the issue.

@edurenye
Copy link
Author

That was the issue for my ECHO, upgrading did not fix it, but does not add more problems, so I think once we fix this issue we can upgrade.

At the end I used the base service and I have my ECHO working, but the responses sound awful, probably would sound better with a better model in GPU.

Also, ECHO is not the best thing sometimes the speaker makes this sounds like a wire is not fully connected, like electrical sparks. Furthermore, after a while it stops to listen, and I need to plug it off and on again.

I think I need a better speaker, even if it's a bit more expensive.

I would like to pass the responses to a better Bluetooth speaker directly from Home Assistant, but that will be hard and require time, right now Home Assistant doesn't even allow me to use Bluetooth speakers for playing music...

@nikito
Copy link

nikito commented Mar 19, 2024

Just wanted to chime in and say I got this running in k8s, and everything works fine (including openwake with a custom wake word :) ), except for Piper, I get the same error as the person above where it says no such file or directory: ''. I did some debug and it seems that there's something going on with stdin/stdout that is supposed to take the input text, generate the wave file, then pass it along. Not sure where that is breaking down, but that appears to be the root issue. :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet